Commit 67e1ae9b authored by Michael Meskes's avatar Michael Meskes

List VALUE as a keyword.

parent 16888482
...@@ -1873,6 +1873,10 @@ Tue Oct 5 12:45:48 CEST 2004 ...@@ -1873,6 +1873,10 @@ Tue Oct 5 12:45:48 CEST 2004
Mon Oct 18 15:34:51 CEST 2004 Mon Oct 18 15:34:51 CEST 2004
- Synced parser. - Synced parser.
Wed Nov 10 14:43:50 CET 2004
- List VALUE as a keyword.
- Set ecpg version to 3.2.0. - Set ecpg version to 3.2.0.
- Set compat library version to 1.2. - Set compat library version to 1.2.
- Set ecpg library version to 4.2. - Set ecpg library version to 4.2.
......
/* $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 */ /* Copyright comment */
%{ %{
...@@ -5763,6 +5763,7 @@ ECPGKeywords_vanames: SQL_BREAK { $$ = make_str("break"); } ...@@ -5763,6 +5763,7 @@ ECPGKeywords_vanames: SQL_BREAK { $$ = make_str("break"); }
| SQL_SQLPRINT { $$ = make_str("sqlprint"); } | SQL_SQLPRINT { $$ = make_str("sqlprint"); }
| SQL_SQLWARNING { $$ = make_str("sqlwarning"); } | SQL_SQLWARNING { $$ = make_str("sqlwarning"); }
| SQL_STOP { $$ = make_str("stop"); } | SQL_STOP { $$ = make_str("stop"); }
| SQL_VALUE { $$ = make_str("value"); }
; ;
ECPGKeywords_rest: SQL_CONNECT { $$ = make_str("connect"); } ECPGKeywords_rest: SQL_CONNECT { $$ = make_str("connect"); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment