mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 06:37:06 -04:00
List VALUE as a keyword.
This commit is contained in:
parent
1688848204
commit
67e1ae9b03
2 changed files with 6 additions and 1 deletions
|
|
@ -1873,6 +1873,10 @@ Tue Oct 5 12:45:48 CEST 2004
|
|||
Mon Oct 18 15:34:51 CEST 2004
|
||||
|
||||
- Synced parser.
|
||||
|
||||
Wed Nov 10 14:43:50 CET 2004
|
||||
|
||||
- List VALUE as a keyword.
|
||||
- Set ecpg version to 3.2.0.
|
||||
- Set compat library version to 1.2.
|
||||
- Set ecpg library version to 4.2.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.300 2004/11/05 19:16:43 tgl Exp $ */
|
||||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.301 2004/11/10 13:48:10 meskes Exp $ */
|
||||
|
||||
/* Copyright comment */
|
||||
%{
|
||||
|
|
@ -5763,6 +5763,7 @@ ECPGKeywords_vanames: SQL_BREAK { $$ = make_str("break"); }
|
|||
| SQL_SQLPRINT { $$ = make_str("sqlprint"); }
|
||||
| SQL_SQLWARNING { $$ = make_str("sqlwarning"); }
|
||||
| SQL_STOP { $$ = make_str("stop"); }
|
||||
| SQL_VALUE { $$ = make_str("value"); }
|
||||
;
|
||||
|
||||
ECPGKeywords_rest: SQL_CONNECT { $$ = make_str("connect"); }
|
||||
|
|
|
|||
Loading…
Reference in a new issue