diff options
author | Tom Lane | 2009-07-12 17:12:34 +0000 |
---|---|---|
committer | Tom Lane | 2009-07-12 17:12:34 +0000 |
commit | 6566e37e027e14a69e263cb82db4a4e31d9cb8b4 (patch) | |
tree | cbae5de9887767de90c80711e20906f255d247b6 /src/backend/parser/parser.c | |
parent | 23d830bd9aa6fd78d6b5a51433c94d4e30a1fb84 (diff) |
Move some declarations in the raw-parser header files to create a clearer
distinction between the external API (parser.h) and declarations that only
need to be visible within the raw parser code (gramparse.h, which now is only
included by parser.c, gram.y, scan.l, and keywords.c). This is in preparation
for the upcoming change to a reentrant lexer, which will require referencing
YYSTYPE in the declarations of base_yylex and filtered_base_yylex, hence
gram.h will have to be included by gramparse.h. We don't want any more files
than absolutely necessary to depend on gram.h, so some cleanup is called for.
Diffstat (limited to 'src/backend/parser/parser.c')
-rw-r--r-- | src/backend/parser/parser.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/parser/parser.c b/src/backend/parser/parser.c index ee77c38f86e..1e7f93af536 100644 --- a/src/backend/parser/parser.c +++ b/src/backend/parser/parser.c @@ -14,15 +14,14 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/parser/parser.c,v 1.78 2009/06/11 14:49:00 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/parser/parser.c,v 1.79 2009/07/12 17:12:34 tgl Exp $ * *------------------------------------------------------------------------- */ #include "postgres.h" -#include "parser/gramparse.h" /* required before parser/gram.h! */ -#include "parser/gram.h" +#include "parser/gramparse.h" #include "parser/parser.h" |