Commit 9ea74630 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart

Add a few keywords for SQL-92 support.

parent 0fbfba11
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.16 1997/09/08 02:25:17 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.17 1997/09/13 03:13:37 thomas Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -55,6 +55,7 @@ static ScanKeyword ScanKeywords[] = { ...@@ -55,6 +55,7 @@ static ScanKeyword ScanKeywords[] = {
{"by", BY}, {"by", BY},
{"cast", CAST}, {"cast", CAST},
{"change", CHANGE}, {"change", CHANGE},
{"character", CHARACTER},
{"check", CHECK}, {"check", CHECK},
{"close", CLOSE}, {"close", CLOSE},
{"cluster", CLUSTER}, {"cluster", CLUSTER},
...@@ -75,6 +76,7 @@ static ScanKeyword ScanKeywords[] = { ...@@ -75,6 +76,7 @@ static ScanKeyword ScanKeywords[] = {
{"desc", DESC}, {"desc", DESC},
{"distinct", DISTINCT}, {"distinct", DISTINCT},
{"do", DO}, {"do", DO},
{"double", DOUBLE},
{"drop", DROP}, {"drop", DROP},
{"end", END_TRANS}, {"end", END_TRANS},
{"execute", EXECUTE}, {"execute", EXECUTE},
...@@ -132,6 +134,7 @@ static ScanKeyword ScanKeywords[] = { ...@@ -132,6 +134,7 @@ static ScanKeyword ScanKeywords[] = {
{"order", ORDER}, {"order", ORDER},
{"outer", OUTERJOIN}, {"outer", OUTERJOIN},
{"position", POSITION}, {"position", POSITION},
{"precision", PRECISION},
{"privileges", PRIVILEGES}, {"privileges", PRIVILEGES},
{"procedure", PROCEDURE}, {"procedure", PROCEDURE},
{"public", PUBLIC}, {"public", PUBLIC},
...@@ -159,8 +162,8 @@ static ScanKeyword ScanKeywords[] = { ...@@ -159,8 +162,8 @@ static ScanKeyword ScanKeywords[] = {
{"table", TABLE}, {"table", TABLE},
{"time", TIME}, {"time", TIME},
{"to", TO}, {"to", TO},
{"transaction", TRANSACTION},
{"trailing", TRAILING}, {"trailing", TRAILING},
{"transaction", TRANSACTION},
{"trigger", TRIGGER}, {"trigger", TRIGGER},
{"trim", TRIM}, {"trim", TRIM},
{"type", P_TYPE}, {"type", P_TYPE},
...@@ -170,6 +173,7 @@ static ScanKeyword ScanKeywords[] = { ...@@ -170,6 +173,7 @@ static ScanKeyword ScanKeywords[] = {
{"using", USING}, {"using", USING},
{"vacuum", VACUUM}, {"vacuum", VACUUM},
{"values", VALUES}, {"values", VALUES},
{"varying", VARYING},
{"verbose", VERBOSE}, {"verbose", VERBOSE},
{"version", VERSION}, {"version", VERSION},
{"view", VIEW}, {"view", VIEW},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment