Skip to content

Commit 4edb777

Browse files
author
Thomas G. Lockhart
committed
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.
1 parent 9408abd commit 4edb777

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/backend/parser/gram.y

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.88.2.1 1999/08/18 13:01:50 ishii Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.88.2.2 1999/09/14 06:07:35 thomas Exp $
1414
*
1515
* HISTORY
1616
* AUTHOR DATE MAJOR EVENT
@@ -5159,9 +5159,11 @@ ColId: IDENT { $$ = $1; }
51595159
| INSENSITIVE { $$ = "insensitive"; }
51605160
| INSTEAD { $$ = "instead"; }
51615161
| ISNULL { $$ = "isnull"; }
5162+
| ISOLATION { $$ = "isolation"; }
51625163
| KEY { $$ = "key"; }
51635164
| LANGUAGE { $$ = "language"; }
51645165
| LANCOMPILER { $$ = "lancompiler"; }
5166+
| LEVEL { $$ = "level"; }
51655167
| LOCATION { $$ = "location"; }
51665168
| MATCH { $$ = "match"; }
51675169
| MAXVALUE { $$ = "maxvalue"; }

0 commit comments

Comments
 (0)