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 43e65a9 commit 40564adCopy full SHA for 40564ad
pg_show_plans.c
@@ -159,7 +159,11 @@ _PG_init(void)
159
NULL,
160
&start_enabled,
161
true,
162
+#if PG_VERSION_NUM >= 150000
163
PGC_USERSET,
164
+#else
165
+ PGC_POSTMASTER,
166
+#endif
167
0,
168
NULL, set_state, show_state);
169
DefineCustomIntVariable("pg_show_plans.max_plan_length",
@@ -183,7 +187,11 @@ _PG_init(void)
183
187
&plan_format,
184
188
EXPLAIN_FORMAT_TEXT,
185
189
plan_formats,
190
186
191
192
193
194
195
196
NULL, prop_format_to_shmem, show_format);
197
0 commit comments