Skip to content

Commit

Permalink
Test PG15.
Browse files Browse the repository at this point in the history
  • Loading branch information
sb230132 committed Nov 18, 2022
1 parent b9ca06d commit 152864e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/ci_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@
PG14_LATEST = "14.6"
PG14_ABI_MIN = "14.0"

PG_LATEST = [PG12_LATEST, PG13_LATEST, PG14_LATEST]
PG15_LATEST = "15.0"

PG_LATEST = [PG12_LATEST, PG13_LATEST, PG14_LATEST, PG15_LATEST]
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -343,9 +343,9 @@ set(PG_VERSION "${PG_VERSION_MAJOR}.${PG_VERSION_MINOR}")
# Ensure that PostgreSQL version is supported and consistent with src/compat.h
# version check
if((${PG_VERSION_MAJOR} LESS "12")
OR (${PG_VERSION_MAJOR} GREATER "14")
OR (${PG_VERSION_MAJOR} GREATER "15")
AND NOT (${EXPERIMENTAL}))
message(FATAL_ERROR "TimescaleDB only supports PostgreSQL 12, 13 and 14")
message(FATAL_ERROR "TimescaleDB only supports PostgreSQL 12, 13, 14 and 15")
else()
message(STATUS "Compiling against PostgreSQL version ${PG_VERSION}")
endif()
Expand Down

0 comments on commit 152864e

Please sign in to comment.