From: Michael Meskes Date: Wed, 4 Jun 2008 12:26:14 +0000 (+0000) Subject: Added symbol SQL to list of allowed variables. X-Git-Tag: REL8_3_2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bf3bf909a50e972a55e1425adc2e4f31f0765b3d;p=thirdparty%2Fpostgresql.git Added symbol SQL to list of allowed variables. --- diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index 5f576276b50..aa7413e2bf1 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.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"); }