mirror of
https://github.com/postgres/postgres.git
synced 2026-03-09 01:31:22 -04:00
Added SQL to list of allowed variable names.
This commit is contained in:
parent
c1e9481c4f
commit
52e3b0e90e
1 changed files with 2 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.339.2.3 2008/02/14 14:57:29 meskes Exp $ */
|
||||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.339.2.4 2008/06/04 12:27:30 meskes Exp $ */
|
||||
|
||||
/* Copyright comment */
|
||||
%{
|
||||
|
|
@ -6078,6 +6078,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"); }
|
||||
|
|
|
|||
Loading…
Reference in a new issue