File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -2358,6 +2358,10 @@ Tue, 20 May 2008 17:31:01 +0200
23582358 - Made ecpg parser use backend provided keyword list. One less file to
23592359 sync manually.
23602360 - Changed whenever test so exit value is 0.
2361+
2362+ Wed, 04 Jun 2008 14:22:30 +0200
2363+
2364+ - Added lost symbol SQL to list of allowed variable names.
23612365 - Set pgtypes library version to 3.1.
23622366 - Set compat library version to 3.1.
23632367 - Set ecpg library version to 6.2.
Original file line number Diff line number Diff line change 1- /* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.366 2008/05/20 23:17:32 meskes Exp $ */
1+ /* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.367 2008/06/04 12: 23:34 meskes Exp $ */
22
33/* Copyright comment */
44%{
@@ -6316,6 +6316,7 @@ ECPGKeywords_vanames: SQL_BREAK { $$ = make_str("break"); }
63166316 | SQL_RETURNED_OCTET_LENGTH { $$ = make_str(" returned_octet_length" ); }
63176317 | SQL_SCALE { $$ = make_str(" scale" ); }
63186318 | SQL_SECTION { $$ = make_str(" section" ); }
6319+ | SQL_SQL { $$ = make_str(" sql" ); }
63196320 | SQL_SQLERROR { $$ = make_str(" sqlerror" ); }
63206321 | SQL_SQLPRINT { $$ = make_str(" sqlprint" ); }
63216322 | SQL_SQLWARNING { $$ = make_str(" sqlwarning" ); }
You can’t perform that action at this time.
0 commit comments