diff options
Diffstat (limited to 'src/include/parser/gramparse.h')
-rw-r--r-- | src/include/parser/gramparse.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/include/parser/gramparse.h b/src/include/parser/gramparse.h index 13af69116cd..8430ad8c8e8 100644 --- a/src/include/parser/gramparse.h +++ b/src/include/parser/gramparse.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/parser/gramparse.h,v 1.34 2006/03/14 22:48:22 tgl Exp $ + * $PostgreSQL: pgsql/src/include/parser/gramparse.h,v 1.35 2006/05/11 19:15:35 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -27,6 +27,11 @@ */ #define YYLTYPE int +/* GUC variables in scan.l (every one of these is a bad idea :-() */ +extern bool escape_string_warning; +extern bool standard_conforming_strings; + + /* from scan.l */ extern void scanner_init(const char *str); extern void scanner_finish(void); |