Skip to content

Commit 9ea7463

Browse files
author
Thomas G. Lockhart
committed
Add a few keywords for SQL-92 support.
1 parent 0fbfba1 commit 9ea7463

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/backend/parser/keywords.c

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.16 1997/09/08 02:25:17 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.17 1997/09/13 03:13:37 thomas Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -55,6 +55,7 @@ static ScanKeyword ScanKeywords[] = {
5555
{"by", BY},
5656
{"cast", CAST},
5757
{"change", CHANGE},
58+
{"character", CHARACTER},
5859
{"check", CHECK},
5960
{"close", CLOSE},
6061
{"cluster", CLUSTER},
@@ -75,6 +76,7 @@ static ScanKeyword ScanKeywords[] = {
7576
{"desc", DESC},
7677
{"distinct", DISTINCT},
7778
{"do", DO},
79+
{"double", DOUBLE},
7880
{"drop", DROP},
7981
{"end", END_TRANS},
8082
{"execute", EXECUTE},
@@ -132,6 +134,7 @@ static ScanKeyword ScanKeywords[] = {
132134
{"order", ORDER},
133135
{"outer", OUTERJOIN},
134136
{"position", POSITION},
137+
{"precision", PRECISION},
135138
{"privileges", PRIVILEGES},
136139
{"procedure", PROCEDURE},
137140
{"public", PUBLIC},
@@ -159,8 +162,8 @@ static ScanKeyword ScanKeywords[] = {
159162
{"table", TABLE},
160163
{"time", TIME},
161164
{"to", TO},
162-
{"transaction", TRANSACTION},
163165
{"trailing", TRAILING},
166+
{"transaction", TRANSACTION},
164167
{"trigger", TRIGGER},
165168
{"trim", TRIM},
166169
{"type", P_TYPE},
@@ -170,6 +173,7 @@ static ScanKeyword ScanKeywords[] = {
170173
{"using", USING},
171174
{"vacuum", VACUUM},
172175
{"values", VALUES},
176+
{"varying", VARYING},
173177
{"verbose", VERBOSE},
174178
{"version", VERSION},
175179
{"view", VIEW},

0 commit comments

Comments
 (0)