File tree 2 files changed +6
-1
lines changed
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
2358
2358
- Made ecpg parser use backend provided keyword list. One less file to
2359
2359
sync manually.
2360
2360
- 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.
2361
2365
- Set pgtypes library version to 3.1.
2362
2366
- Set compat library version to 3.1.
2363
2367
- 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 $ */
2
2
3
3
/* Copyright comment */
4
4
%{
@@ -6316,6 +6316,7 @@ ECPGKeywords_vanames: SQL_BREAK { $$ = make_str("break"); }
6316
6316
| SQL_RETURNED_OCTET_LENGTH { $$ = make_str(" returned_octet_length" ); }
6317
6317
| SQL_SCALE { $$ = make_str(" scale" ); }
6318
6318
| SQL_SECTION { $$ = make_str(" section" ); }
6319
+ | SQL_SQL { $$ = make_str(" sql" ); }
6319
6320
| SQL_SQLERROR { $$ = make_str(" sqlerror" ); }
6320
6321
| SQL_SQLPRINT { $$ = make_str(" sqlprint" ); }
6321
6322
| SQL_SQLWARNING { $$ = make_str(" sqlwarning" ); }
You can’t perform that action at this time.
0 commit comments