We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a88c1db commit 2eca4eeCopy full SHA for 2eca4ee
1 file changed
jsquery_op.c
@@ -16,7 +16,15 @@
16
17
#include "miscadmin.h"
18
#include "utils/builtins.h"
19
+#if PG_VERSION_NUM >= 90500
20
+#include "common/pg_crc.h"
21
+#define COMP_CRC32 COMP_CRC32C
22
+#define INIT_CRC32 INIT_CRC32C
23
+#define FIN_CRC32 FIN_CRC32C
24
25
+#else
26
#include "utils/pg_crc.h"
27
+#endif
28
29
#include "jsquery.h"
30
0 commit comments