diff options
Diffstat (limited to 'src/include/parser/gramparse.h')
-rw-r--r-- | src/include/parser/gramparse.h | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/src/include/parser/gramparse.h b/src/include/parser/gramparse.h index 86719855be8..31290a270c8 100644 --- a/src/include/parser/gramparse.h +++ b/src/include/parser/gramparse.h @@ -1,13 +1,17 @@ /*------------------------------------------------------------------------- * * gramparse.h - * Declarations for routines exported from lexer and parser files. + * Shared definitions for the "raw" parser (flex and bison phases only) + * + * NOTE: this file is only meant to be included in the core parsing files, + * ie, parser.c, gram.y, scan.l, and keywords.c. Definitions that are needed + * outside the core parser should be in parser.h. * * * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/parser/gramparse.h,v 1.44 2009/06/11 14:49:11 momjian Exp $ + * $PostgreSQL: pgsql/src/include/parser/gramparse.h,v 1.45 2009/07/12 17:12:34 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -27,17 +31,10 @@ */ #define YYLTYPE int -typedef enum -{ - BACKSLASH_QUOTE_OFF, - BACKSLASH_QUOTE_ON, - BACKSLASH_QUOTE_SAFE_ENCODING -} BackslashQuoteType; - -/* 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; +/* + * After defining YYLTYPE, it's safe to include gram.h. + */ +#include "parser/gram.h" /* from parser.c */ @@ -53,7 +50,5 @@ extern void base_yyerror(const char *message); /* from gram.y */ extern void parser_init(void); extern int base_yyparse(void); -extern List *SystemFuncName(char *name); -extern TypeName *SystemTypeName(char *name); #endif /* GRAMPARSE_H */ |