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 18d3e6b commit b75a322Copy full SHA for b75a322
src/plpgsql_check.c
@@ -85,8 +85,13 @@ static const struct config_enum_entry tracer_level_options[] = {
85
};
86
87
void _PG_init(void);
88
+
89
+#if PG_VERSION_NUM < 150000
90
91
void _PG_fini(void);
92
93
+#endif
94
95
shmem_startup_hook_type prev_shmem_startup_hook = NULL;
96
97
bool plpgsql_check_regress_test_mode;
@@ -321,6 +326,8 @@ _PG_init(void)
321
326
inited = true;
322
327
}
323
328
329
330
324
331
/*
325
332
* Module unload callback
333
*/
@@ -335,3 +342,5 @@ _PG_fini(void)
335
342
needs_fmgr_hook = plpgsql_check_next_needs_fmgr_hook;
336
343
fmgr_hook = plpgsql_check_next_fmgr_hook;
337
344
345
346
0 commit comments