mirror of https://github.com/citusdata/citus.git
Adds PG14 to version_compat.h and columnar_version_compat.h files
parent
7a27d7cee3
commit
1b6c8348fb
|
@ -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) \
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue