Skip to content
Snippets Groups Projects
Commit 4edb7770 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart
Browse files

Allow ISOLATION and LEVEL as column names. These are SQL92 reserved words

 which do not need to be so for our parser. Apparently omitted earlier.
parent 9408abd6
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.88.2.1 1999/08/18 13:01:50 ishii Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.88.2.2 1999/09/14 06:07:35 thomas Exp $
* *
* HISTORY * HISTORY
* AUTHOR DATE MAJOR EVENT * AUTHOR DATE MAJOR EVENT
...@@ -5159,9 +5159,11 @@ ColId: IDENT { $$ = $1; } ...@@ -5159,9 +5159,11 @@ ColId: IDENT { $$ = $1; }
| INSENSITIVE { $$ = "insensitive"; } | INSENSITIVE { $$ = "insensitive"; }
| INSTEAD { $$ = "instead"; } | INSTEAD { $$ = "instead"; }
| ISNULL { $$ = "isnull"; } | ISNULL { $$ = "isnull"; }
| ISOLATION { $$ = "isolation"; }
| KEY { $$ = "key"; } | KEY { $$ = "key"; }
| LANGUAGE { $$ = "language"; } | LANGUAGE { $$ = "language"; }
| LANCOMPILER { $$ = "lancompiler"; } | LANCOMPILER { $$ = "lancompiler"; }
| LEVEL { $$ = "level"; }
| LOCATION { $$ = "location"; } | LOCATION { $$ = "location"; }
| MATCH { $$ = "match"; } | MATCH { $$ = "match"; }
| MAXVALUE { $$ = "maxvalue"; } | MAXVALUE { $$ = "maxvalue"; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment