]> granicus.if.org Git - postgresql/commitdiff
Added symbol SQL to list of allowed variables.
authorMichael Meskes <meskes@postgresql.org>
Wed, 4 Jun 2008 12:26:14 +0000 (12:26 +0000)
committerMichael Meskes <meskes@postgresql.org>
Wed, 4 Jun 2008 12:26:14 +0000 (12:26 +0000)
src/interfaces/ecpg/preproc/preproc.y

index 5f576276b5007f08e99a39a19cb1c2cbc14b61f3..aa7413e2bf1a2c953578191a2fedf74ffe7970c3 100644 (file)
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.359.2.3 2008/05/12 16:30:17 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.359.2.4 2008/06/04 12:26:14 meskes Exp $ */
 
 /* Copyright comment */
 %{
@@ -6272,6 +6272,7 @@ ECPGKeywords_vanames:  SQL_BREAK          { $$ = make_str("break"); }
                | SQL_RETURNED_OCTET_LENGTH     { $$ = make_str("returned_octet_length"); }
                | SQL_SCALE                                     { $$ = make_str("scale"); }
                | SQL_SECTION                           { $$ = make_str("section"); }
+               | SQL_SQL                               { $$ = make_str("sql"); }
                | SQL_SQLERROR                          { $$ = make_str("sqlerror"); }
                | SQL_SQLPRINT                          { $$ = make_str("sqlprint"); }
                | SQL_SQLWARNING                        { $$ = make_str("sqlwarning"); }