8000
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 77b7e77 commit c356f2aCopy full SHA for c356f2a
vops.c
@@ -67,7 +67,9 @@ PG_MODULE_MAGIC;
67
68
/* pg module functions */
69
void _PG_init(void);
70
+#if PG_VERSION_NUM<150000
71
void _PG_fini(void);
72
+#endif
73
74
uint64 filter_mask = ~0;
75
static struct {
@@ -4743,6 +4745,7 @@ void _PG_init(void)
4743
4745
NULL);
4744
4746
}
4747
4748
4749
void _PG_fini(void)
4750
{
4751
elog(LOG, "Finalize VOPS extension");
@@ -4755,3 +4758,4 @@ void _PG_fini(void)
4755
4758
/* undo static initializations */
4756
4759
reset_static_cache();
4757
4760
4761
0 commit comments