summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes2004-11-10 13:48:10 +0000
committerMichael Meskes2004-11-10 13:48:10 +0000
commit67e1ae9b03fbbaac68977a3ffab8314844a23529 (patch)
tree3dc3f98679805b430d8db2dd6962bd07c86e8bf0
parent168884820414cc491185dff7c447398dc5307077 (diff)
List VALUE as a keyword.
-rw-r--r--src/interfaces/ecpg/ChangeLog4
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/ChangeLog b/src/interfaces/ecpg/ChangeLog
index be3e4a86751..e714705cf16 100644
--- a/src/interfaces/ecpg/ChangeLog
+++ b/src/interfaces/ecpg/ChangeLog
@@ -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.
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index fa579afd6a2..3339ec477ec 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.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"); }