mirror of https://github.com/citusdata/citus.git
Update version check in ruleutils_18.c for PostgreSQL 18 compatibility
parent
d26701fd70
commit
361557a976
|
@ -18,7 +18,7 @@
|
|||
|
||||
#include "pg_config.h"
|
||||
|
||||
#if (PG_VERSION_NUM >= PG_VERSION_17) && (PG_VERSION_NUM < PG_VERSION_18)
|
||||
#if (PG_VERSION_NUM >= PG_VERSION_18) && (PG_VERSION_NUM < PG_VERSION_19)
|
||||
|
||||
#include "postgres.h"
|
||||
|
||||
|
|
|
@ -15,5 +15,6 @@
|
|||
#define PG_VERSION_16 160000
|
||||
#define PG_VERSION_17 170000
|
||||
#define PG_VERSION_18 180000
|
||||
#define PG_VERSION_19 190000
|
||||
|
||||
#endif /* PG_VERSION_CONSTANTS */
|
||||
|
|
Loading…
Reference in New Issue