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 2f15771 commit 69bd1a9Copy full SHA for 69bd1a9
ptrack.c
@@ -34,13 +34,17 @@
34
#endif
35
#include "catalog/pg_tablespace.h"
36
#include "catalog/pg_type.h"
37
+#ifdef PGPRO_EE
38
+/* For file_is_in_cfs_tablespace() only. */
39
+#if PG_VERSION_NUM >= 140000
40
+#include "common/cfs_common.h"
41
+#else
42
+#include "common/controldata_utils.h"
43
+#endif /* PG_VERSION_NUM */
44
+#endif /* PGPRO_EE */
45
#include "funcapi.h"
46
#include "miscadmin.h"
47
#include "nodes/pg_list.h"
-#ifdef PGPRO_EE
-/* For file_is_in_cfs_tablespace() only. */
-#include "replication/basebackup.h"
-#endif
48
#include "storage/copydir.h"
49
#include "storage/lmgr.h"
50
#if PG_VERSION_NUM >= 120000
0 commit comments