We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf93b99 commit b111fd2Copy full SHA for b111fd2
src/partition_creation.c
@@ -14,6 +14,7 @@
14
#include "pathman.h"
15
#include "pathman_workers.h"
16
#include "xact_handling.h"
17
+#include "compat/pg_compat.h"
18
19
#include "access/htup_details.h"
20
#include "access/reloptions.h"
src/relation_info.c
@@ -35,8 +35,13 @@
35
#include "utils/lsyscache.h"
36
#include "utils/typcache.h"
37
38
+#if PG_VERSION_NUM < 90600
39
+#include "optimizer/planmain.h"
40
+#endif
41
+
42
#if PG_VERSION_NUM >= 90600
43
#include "catalog/pg_constraint_fn.h"
44
+#include "nodes/nodeFuncs.h"
45
#endif
46
47
0 commit comments