summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2012-03-31 10:56:21 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2012-03-31 10:56:21 -0400
commit5e83854d71bb05403768a97a415a129b0081564b (patch)
treea2abf532dbd085c391959910ba74cf6879834ccd /src
parent194b5ea3d0722f94e8a6ba9cec03b858cc8c9370 (diff)
Add PGDLLIMPORT to ScanKeywords and NumScanKeywords.
Per buildfarm, this is now needed by contrib/pg_stat_statements.
Diffstat (limited to 'src')
-rw-r--r--src/include/parser/keywords.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/keywords.h b/src/include/parser/keywords.h
index ebfa05d0f4d..2b02ab0dd78 100644
--- a/src/include/parser/keywords.h
+++ b/src/include/parser/keywords.h
@@ -28,8 +28,8 @@ typedef struct ScanKeyword
int16 category; /* see codes above */
} ScanKeyword;
-extern const ScanKeyword ScanKeywords[];
-extern const int NumScanKeywords;
+extern PGDLLIMPORT const ScanKeyword ScanKeywords[];
+extern PGDLLIMPORT const int NumScanKeywords;
extern const ScanKeyword *ScanKeywordLookup(const char *text,
const ScanKeyword *keywords,