Update version check in ruleutils_18.c for PostgreSQL 18 compatibility

m3hm3t/pg18_rel_oid_2
Mehmet Yilmaz 2025-05-13 14:03:10 +00:00
parent d26701fd70
commit 361557a976
2 changed files with 2 additions and 1 deletions

View File

@ -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"

View File

@ -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 */