mirror of https://github.com/citusdata/citus.git
Add missing ifdef for PG 15
parent
abffa6c3b9
commit
c7b51025ab
|
@ -18,7 +18,8 @@
|
||||||
|
|
||||||
#include "pg_config.h"
|
#include "pg_config.h"
|
||||||
|
|
||||||
#if (PG_VERSION_NUM >= PG_VERSION_14) && (PG_VERSION_NUM < PG_VERSION_15)
|
/* We should drop PG 15 support from this file, this is only for testing purposes until #6085 is merged. */
|
||||||
|
#if (PG_VERSION_NUM >= PG_VERSION_14) && (PG_VERSION_NUM <= PG_VERSION_15)
|
||||||
|
|
||||||
#include "postgres.h"
|
#include "postgres.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue