diff options
| author | Michael Meskes | 2007-06-12 11:32:30 +0000 |
|---|---|---|
| committer | Michael Meskes | 2007-06-12 11:32:30 +0000 |
| commit | 5e96a7b96cfc59ac5a82ee82002fa617a196e61b (patch) | |
| tree | 93f691a62eed551969b2b5b9b85c25176b68b10e /src/interfaces | |
| parent | 09922597c5f460ab02882716c371b2a5c47e742e (diff) | |
Fixed reduce/recuce problem due to CURRENT_P.
Diffstat (limited to 'src/interfaces')
| -rw-r--r-- | src/interfaces/ecpg/preproc/preproc.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index a8c0473e81e..d16611f1027 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.346 2007/06/12 07:55:56 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.347 2007/06/12 11:32:30 meskes Exp $ */ /* Copyright comment */ %{ @@ -6449,7 +6449,6 @@ ECPGunreserved_con: ABORT_P { $$ = make_str("abort"); } | CREATEROLE { $$ = make_str("createrole"); } | CREATEUSER { $$ = make_str("createuser"); } | CSV { $$ = make_str("csv"); } - | CURRENT_P { $$ = make_str("current"); } | CURSOR { $$ = make_str("cursor"); } | CYCLE { $$ = make_str("cycle"); } | DATABASE { $$ = make_str("database"); } @@ -6752,6 +6751,7 @@ reserved_keyword: | COLUMN { $$ = make_str("column"); } | CONSTRAINT { $$ = make_str("constraint"); } | CREATE { $$ = make_str("create"); } + | CURRENT_P { $$ = make_str("current"); } | CURRENT_DATE { $$ = make_str("current_date"); } | CURRENT_TIME { $$ = make_str("current_time"); } | CURRENT_TIMESTAMP { $$ = make_str("current_timestamp"); } |
