Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2ee735c

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 parent24c8283 commit2ee735c

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.97 1999/08/18 13:04:45 ishii Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.98 1999/09/14 06:06:31 thomas Exp $
1414
*
1515
* HISTORY
1616
* AUTHORDATEMAJOR EVENT
@@ -5001,9 +5001,11 @@ ColId: IDENT{ $$ = $1; }
50015001
| INSENSITIVE{ $$ = "insensitive"; }
50025002
| INSTEAD{ $$ = "instead"; }
50035003
| ISNULL{ $$ = "isnull"; }
5004+
| ISOLATION{ $$ = "isolation"; }
50045005
| KEY{ $$ = "key"; }
50055006
| LANGUAGE{ $$ = "language"; }
50065007
| LANCOMPILER{ $$ = "lancompiler"; }
5008+
| LEVEL{ $$ = "level"; }
50075009
| LOCATION{ $$ = "location"; }
50085010
| MATCH{ $$ = "match"; }
50095011
| MAXVALUE{ $$ = "maxvalue"; }

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp