aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2008-06-04 12:26:14 +0000
committerMichael Meskes <meskes@postgresql.org>2008-06-04 12:26:14 +0000
commitbf3bf909a50e972a55e1425adc2e4f31f0765b3d (patch)
tree6583d0607a44e95775dc88c6b72506f06949686f
parentad6acfde573669492c12461b4a839009cbee496e (diff)
downloadpostgresql-bf3bf909a50e972a55e1425adc2e4f31f0765b3d.tar.gz
postgresql-bf3bf909a50e972a55e1425adc2e4f31f0765b3d.zip
Added symbol SQL to list of allowed variables.
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y3
1 files changed, 2 insertions, 1 deletions
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"); }