blob: b66f5412a22745b61554722c5bdf2fe623aee93d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- sql/pgq/triggers/stringutil.c.orig 2019-08-05 04:48:30 UTC
+++ sql/pgq/triggers/stringutil.c
@@ -19,7 +19,11 @@
#include <postgres.h>
#include <lib/stringinfo.h>
#include <mb/pg_wchar.h>
+#if PG_VERSION_NUM < 110000
#include <parser/keywords.h>
+#else
+#include <common/keywords.h>
+#endif
#include <utils/memutils.h>
#include "stringutil.h"
|