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 d3e490a commit 860c578Copy full SHA for 860c578
src/hooks.c
@@ -539,7 +539,11 @@ pathman_post_parse_analysis_hook(ParseState *pstate, Query *query)
539
{
540
char *spl_value; /* value of "shared_preload_libraries" GUC */
541
542
+#if PG_VERSION_NUM >= 90600
543
spl_value = GetConfigOptionByName("shared_preload_libraries", NULL, false);
544
+#else
545
+ spl_value = GetConfigOptionByName("shared_preload_libraries", NULL);
546
+#endif
547
548
ereport(ERROR,
549
(errmsg("extension conflict has been detected"),
0 commit comments