diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-07 01:00:19 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-07 01:00:19 +0000 |
commit | 012abebab1bc72043f3f670bf32e91ae4ee04bd2 (patch) | |
tree | 9889e1e2e4ce4cc3d04a32d2f2c56d5ee775cb65 /src/backend/parser/scan.l | |
parent | 48cf2957421e132e999660c5fbb9fb0cc017b5b6 (diff) | |
download | postgresql-012abebab1bc72043f3f670bf32e91ae4ee04bd2.tar.gz postgresql-012abebab1bc72043f3f670bf32e91ae4ee04bd2.zip |
Remove the stub support we had for UNION JOIN; per discussion, this is
not likely ever to be implemented seeing it's been removed from SQL2003.
This allows getting rid of the 'filter' version of yylex() that we had in
parser.c, which should save at least a few microseconds in parsing.
Diffstat (limited to 'src/backend/parser/scan.l')
-rw-r--r-- | src/backend/parser/scan.l | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/parser/scan.l b/src/backend/parser/scan.l index e277920ee20..3d63cb73c8a 100644 --- a/src/backend/parser/scan.l +++ b/src/backend/parser/scan.l @@ -24,7 +24,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/parser/scan.l,v 1.131 2006/03/06 19:49:20 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/parser/scan.l,v 1.132 2006/03/07 01:00:17 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -45,8 +45,6 @@ #undef fprintf #define fprintf(file, fmt, msg) ereport(ERROR, (errmsg_internal("%s", msg))) -extern YYSTYPE yylval; - static int xcdepth = 0; /* depth of nesting in slash-star comments */ static char *dolqstart; /* current $foo$ quote start string */ |