mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
List VALUE as a keyword.
This commit is contained in:
parent
1688848204
commit
67e1ae9b03
@ -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 New Issue
Block a user