Added lost sysmbol SQL_SQL to list of allowed variable names.
authorMichael Meskes <meskes@postgresql.org>
Wed, 4 Jun 2008 12:23:34 +0000 (12:23 +0000)
committerMichael Meskes <meskes@postgresql.org>
Wed, 4 Jun 2008 12:23:34 +0000 (12:23 +0000)
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/preproc/preproc.y

index 1b3d619017c8a67a139620aec2fa62dddbcb385d..78c47d31a6d8e405ca737909940c1cd56788fbe7 100644 (file)
@@ -2358,6 +2358,10 @@ Tue, 20 May 2008 17:31:01 +0200
        - Made ecpg parser use backend provided keyword list. One less file to
          sync manually.
        - Changed whenever test so exit value is 0.
+
+Wed, 04 Jun 2008 14:22:30 +0200
+
+       - Added lost symbol SQL to list of allowed variable names.
        - Set pgtypes library version to 3.1.
        - Set compat library version to 3.1.
        - Set ecpg library version to 6.2.
index 57ca019b5f9f475fd269d05e6ada4d0759ba4484..0770f329d8404bcfc14391761a94eb1309da4c25 100644 (file)
@@ -6316,6 +6316,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"); }