Merge pull request #6116 from citusdata/main_pg_15

Add missing ifdef for PG 15 for testing & development purposes
pull/6118/head
Önder Kalacı 2022-08-02 09:54:27 +02:00 committed by GitHub
commit 5e3162fa05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,8 @@
#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"