Add missing ifdef for PG 15

pull/6116/head
Onder Kalaci 2022-08-02 09:39:00 +02:00
parent abffa6c3b9
commit c7b51025ab
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"