summaryrefslogtreecommitdiff
path: root/src/include/parser/parser.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2009-07-13 00:42:18 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2009-07-13 00:42:18 +0000
commitf1d9c299d6e2349973e2f6dfc14d4e6ede710788 (patch)
treed6a5615cc70d6255e3fce737da5b16f870e7166e /src/include/parser/parser.h
parent6566e37e027e14a69e263cb82db4a4e31d9cb8b4 (diff)
downloadpostgresql-f1d9c299d6e2349973e2f6dfc14d4e6ede710788.tar.gz
Fix up PGDLLIMPORT marking for standard_conforming_strings. Moving it
into a header file that plpgsql's scan.l can see broke the previous kluge. Per buildfarm results.
Diffstat (limited to 'src/include/parser/parser.h')
-rw-r--r--src/include/parser/parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/parser.h b/src/include/parser/parser.h
index becc24a9a9..296e8d748f 100644
--- a/src/include/parser/parser.h
+++ b/src/include/parser/parser.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parser.h,v 1.26 2009/07/12 17:12:34 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parser.h,v 1.27 2009/07/13 00:42:17 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -28,7 +28,7 @@ typedef enum
/* GUC variables in scan.l (every one of these is a bad idea :-() */
extern int backslash_quote;
extern bool escape_string_warning;
-extern bool standard_conforming_strings;
+extern PGDLLIMPORT bool standard_conforming_strings;
/* Primary entry points for the raw parsing functions */