diff --git a/src/include/columnar/columnar_version_compat.h b/src/include/columnar/columnar_version_compat.h index 48bd2203e..29a0a42d5 100644 --- a/src/include/columnar/columnar_version_compat.h +++ b/src/include/columnar/columnar_version_compat.h @@ -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) \ diff --git a/src/include/distributed/version_compat.h b/src/include/distributed/version_compat.h index 01b2e66cb..50692ad08 100644 --- a/src/include/distributed/version_compat.h +++ b/src/include/distributed/version_compat.h @@ -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)