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 473b932 commit c2d1eeaCopy full SHA for c2d1eea
src/include/common/keywords.h
@@ -28,8 +28,13 @@ typedef struct ScanKeyword
28
int16 category; /* see codes above */
29
} ScanKeyword;
30
31
+#ifndef FRONTEND
32
extern PGDLLIMPORT const ScanKeyword ScanKeywords[];
33
extern PGDLLIMPORT const int NumScanKeywords;
34
+#else
35
+extern const ScanKeyword ScanKeywords[];
36
+extern const int NumScanKeywords;
37
+#endif
38
39
40
extern const ScanKeyword *ScanKeywordLookup(const char *text,
0 commit comments