]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
List VALUE as a keyword.
authorMichael Meskes <meskes@postgresql.org>
Wed, 10 Nov 2004 13:49:17 +0000 (13:49 +0000)
committerMichael Meskes <meskes@postgresql.org>
Wed, 10 Nov 2004 13:49:17 +0000 (13:49 +0000)
src/interfaces/ecpg/preproc/preproc.y

index 32c1136419ff82d6a23a67dc9e008d2c2728d8fb..eede4bb9d37e3bda134a689ec6beaf0b35474cb5 100644 (file)
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.263.2.18 2004/11/01 13:35:54 davec Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.263.2.19 2004/11/10 13:49:17 meskes Exp $ */
 
 /* Copyright comment */
 %{
@@ -5707,6 +5707,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"); }