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 d18ff3e commit b80945eCopy full SHA for b80945e
src/pathman.h
@@ -25,12 +25,15 @@
25
#include "nodes/execnodes.h"
26
#include "optimizer/planner.h"
27
#include "parser/parsetree.h"
28
-#include "storage/lwlock.h"
29
30
31
/* Check PostgreSQL version */
32
-#if PG_VERSION_NUM < 90500
33
- #error "You are trying to build pg_pathman with PostgreSQL version lower than 9.5. Please, check your environment."
+/*
+ * TODO: a fix for WaitForBackgroundWorkerShutdown()
+ * has been accepted, so we have to update this number.
34
+ */
35
+#if PG_VERSION_NUM < 90503
36
+ #error "Cannot build pg_pathman with PostgreSQL version lower than 9.5.3"
37
#endif
38
39
/* Print Datum as CString to server log */
0 commit comments