Adds PG14 to version_compat.h and columnar_version_compat.h files

pull/5209/head
Halil Ozan Akgul 2021-08-10 16:49:04 +03:00 committed by Sait Talha Nisanci
parent 7a27d7cee3
commit 1b6c8348fb
2 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,10 @@
#ifndef COLUMNAR_COMPAT_H
#define COLUMNAR_COMPAT_H
#if PG_VERSION_NUM >= PG_VERSION_14
#else
#endif
#define ACLCHECK_OBJECT_TABLE OBJECT_TABLE
#define ExplainPropertyLong(qlabel, value, es) \

View File

@ -30,6 +30,10 @@
#include "tcop/tcopprot.h"
#endif
#if PG_VERSION_NUM >= PG_VERSION_14
#else
#endif
#if PG_VERSION_NUM >= PG_VERSION_13
#define lnext_compat(l, r) lnext(l, r)
#define list_delete_cell_compat(l, c, p) list_delete_cell(l, c)