Synced parser and keyword list.
This commit is contained in:
parent
f378288e3b
commit
d51d870f9e
@ -1769,6 +1769,14 @@ Sun Mar 14 12:59:15 CET 2004
|
|||||||
Mon Mar 29 17:02:52 CEST 2004
|
Mon Mar 29 17:02:52 CEST 2004
|
||||||
|
|
||||||
- Fixed possible segfault in type.c (by Juergen Cappel)
|
- Fixed possible segfault in type.c (by Juergen Cappel)
|
||||||
|
|
||||||
|
Thu Apr 22 14:13:57 CEST 2004
|
||||||
|
|
||||||
|
- Fixed double usage of allocated memory.
|
||||||
|
|
||||||
|
Thu Apr 29 16:06:37 CEST 2004
|
||||||
|
|
||||||
|
- Synced parser and keyword list.
|
||||||
- Set pgtypes library version to 1.2.
|
- Set pgtypes library version to 1.2.
|
||||||
- Set ecpg version to 3.2.0.
|
- Set ecpg version to 3.2.0.
|
||||||
- Set compat library version to 1.2.
|
- Set compat library version to 1.2.
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.61 2003/11/29 19:52:08 pgsql Exp $
|
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.62 2004/04/29 14:08:10 meskes Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -36,6 +36,7 @@ static ScanKeyword ScanKeywords[] = {
|
|||||||
{"after", AFTER},
|
{"after", AFTER},
|
||||||
{"aggregate", AGGREGATE},
|
{"aggregate", AGGREGATE},
|
||||||
{"all", ALL},
|
{"all", ALL},
|
||||||
|
{"also", ALSO},
|
||||||
{"alter", ALTER},
|
{"alter", ALTER},
|
||||||
{"analyse", ANALYSE}, /* British spelling */
|
{"analyse", ANALYSE}, /* British spelling */
|
||||||
{"analyze", ANALYZE},
|
{"analyze", ANALYZE},
|
||||||
@ -87,6 +88,7 @@ static ScanKeyword ScanKeywords[] = {
|
|||||||
{"createdb", CREATEDB},
|
{"createdb", CREATEDB},
|
||||||
{"createuser", CREATEUSER},
|
{"createuser", CREATEUSER},
|
||||||
{"cross", CROSS},
|
{"cross", CROSS},
|
||||||
|
{"csv", CSV},
|
||||||
{"current_date", CURRENT_DATE},
|
{"current_date", CURRENT_DATE},
|
||||||
{"current_time", CURRENT_TIME},
|
{"current_time", CURRENT_TIME},
|
||||||
{"current_timestamp", CURRENT_TIMESTAMP},
|
{"current_timestamp", CURRENT_TIMESTAMP},
|
||||||
@ -176,6 +178,7 @@ static ScanKeyword ScanKeywords[] = {
|
|||||||
{"key", KEY},
|
{"key", KEY},
|
||||||
{"lancompiler", LANCOMPILER},
|
{"lancompiler", LANCOMPILER},
|
||||||
{"language", LANGUAGE},
|
{"language", LANGUAGE},
|
||||||
|
{"large", LARGE_P},
|
||||||
{"last", LAST_P},
|
{"last", LAST_P},
|
||||||
{"leading", LEADING},
|
{"leading", LEADING},
|
||||||
{"left", LEFT},
|
{"left", LEFT},
|
||||||
@ -208,9 +211,11 @@ static ScanKeyword ScanKeywords[] = {
|
|||||||
{"nothing", NOTHING},
|
{"nothing", NOTHING},
|
||||||
{"notify", NOTIFY},
|
{"notify", NOTIFY},
|
||||||
{"notnull", NOTNULL},
|
{"notnull", NOTNULL},
|
||||||
|
{"nowait", NOWAIT},
|
||||||
{"null", NULL_P},
|
{"null", NULL_P},
|
||||||
{"nullif", NULLIF},
|
{"nullif", NULLIF},
|
||||||
{"numeric", NUMERIC},
|
{"numeric", NUMERIC},
|
||||||
|
{"object", OBJECT_P},
|
||||||
{"of", OF},
|
{"of", OF},
|
||||||
{"off", OFF},
|
{"off", OFF},
|
||||||
{"offset", OFFSET},
|
{"offset", OFFSET},
|
||||||
@ -239,6 +244,7 @@ static ScanKeyword ScanKeywords[] = {
|
|||||||
{"privileges", PRIVILEGES},
|
{"privileges", PRIVILEGES},
|
||||||
{"procedural", PROCEDURAL},
|
{"procedural", PROCEDURAL},
|
||||||
{"procedure", PROCEDURE},
|
{"procedure", PROCEDURE},
|
||||||
|
{"quote", QUOTE},
|
||||||
{"read", READ},
|
{"read", READ},
|
||||||
{"real", REAL},
|
{"real", REAL},
|
||||||
{"recheck", RECHECK},
|
{"recheck", RECHECK},
|
||||||
@ -246,6 +252,7 @@ static ScanKeyword ScanKeywords[] = {
|
|||||||
{"reindex", REINDEX},
|
{"reindex", REINDEX},
|
||||||
{"relative", RELATIVE_P},
|
{"relative", RELATIVE_P},
|
||||||
{"rename", RENAME},
|
{"rename", RENAME},
|
||||||
|
{"repeatable", REPEATABLE},
|
||||||
{"replace", REPLACE},
|
{"replace", REPLACE},
|
||||||
{"reset", RESET},
|
{"reset", RESET},
|
||||||
{"restart", RESTART},
|
{"restart", RESTART},
|
||||||
@ -302,6 +309,7 @@ static ScanKeyword ScanKeywords[] = {
|
|||||||
{"truncate", TRUNCATE},
|
{"truncate", TRUNCATE},
|
||||||
{"trusted", TRUSTED},
|
{"trusted", TRUSTED},
|
||||||
{"type", TYPE_P},
|
{"type", TYPE_P},
|
||||||
|
{"uncommitted", UNCOMMITTED},
|
||||||
{"unencrypted", UNENCRYPTED},
|
{"unencrypted", UNENCRYPTED},
|
||||||
{"union", UNION},
|
{"union", UNION},
|
||||||
{"unique", UNIQUE},
|
{"unique", UNIQUE},
|
||||||
@ -359,17 +367,13 @@ ScanKeywordLookup(char *text)
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Apply an ASCII-only downcasing. We must not use tolower() since it
|
* Apply an ASCII-only downcasing. We must not use tolower() since it
|
||||||
* may produce the wrong translation in some locales (eg, Turkish),
|
* may produce the wrong translation in some locales (eg, Turkish).
|
||||||
* and we don't trust isupper() very much either. In an ASCII-based
|
|
||||||
* encoding the tests against A and Z are sufficient, but we also
|
|
||||||
* check isupper() so that we will work correctly under EBCDIC. The
|
|
||||||
* actual case conversion step should work for either ASCII or EBCDIC.
|
|
||||||
*/
|
*/
|
||||||
for (i = 0; i < len; i++)
|
for (i = 0; i < len; i++)
|
||||||
{
|
{
|
||||||
char ch = text[i];
|
char ch = text[i];
|
||||||
|
|
||||||
if (ch >= 'A' && ch <= 'Z' && isupper((unsigned char) ch))
|
if (ch >= 'A' && ch <= 'Z')
|
||||||
ch += 'a' - 'A';
|
ch += 'a' - 'A';
|
||||||
word[i] = ch;
|
word[i] = ch;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.277 2004/03/04 07:32:01 meskes Exp $ */
|
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.278 2004/04/29 14:08:10 meskes Exp $ */
|
||||||
|
|
||||||
/* Copyright comment */
|
/* Copyright comment */
|
||||||
%{
|
%{
|
||||||
@ -324,7 +324,7 @@ add_additional_variables(char *name, bool insert)
|
|||||||
|
|
||||||
/* ordinary key words in alphabetical order */
|
/* ordinary key words in alphabetical order */
|
||||||
%token <keyword> ABORT_P ABSOLUTE_P ACCESS ACTION ADD AFTER
|
%token <keyword> ABORT_P ABSOLUTE_P ACCESS ACTION ADD AFTER
|
||||||
AGGREGATE ALL ALTER ANALYSE ANALYZE AND ANY ARRAY AS ASC
|
AGGREGATE ALL ALSO ALTER ANALYSE ANALYZE AND ANY ARRAY AS ASC
|
||||||
ASSERTION ASSIGNMENT AT AUTHORIZATION
|
ASSERTION ASSIGNMENT AT AUTHORIZATION
|
||||||
|
|
||||||
BACKWARD BEFORE BEGIN_P BETWEEN BIGINT BINARY BIT
|
BACKWARD BEFORE BEGIN_P BETWEEN BIGINT BINARY BIT
|
||||||
@ -334,7 +334,7 @@ add_additional_variables(char *name, bool insert)
|
|||||||
CHARACTER CHARACTERISTICS CHECK CHECKPOINT CLASS CLOSE
|
CHARACTER CHARACTERISTICS CHECK CHECKPOINT CLASS CLOSE
|
||||||
CLUSTER COALESCE COLLATE COLUMN COMMENT COMMIT
|
CLUSTER COALESCE COLLATE COLUMN COMMENT COMMIT
|
||||||
COMMITTED CONSTRAINT CONSTRAINTS CONVERSION_P CONVERT COPY
|
COMMITTED CONSTRAINT CONSTRAINTS CONVERSION_P CONVERT COPY
|
||||||
CREATE CREATEDB CREATEUSER CROSS CURRENT_DATE CURRENT_TIME
|
CREATE CREATEDB CREATEUSER CROSS CSV CURRENT_DATE CURRENT_TIME
|
||||||
CURRENT_TIMESTAMP CURRENT_USER CURSOR CYCLE
|
CURRENT_TIMESTAMP CURRENT_USER CURSOR CYCLE
|
||||||
|
|
||||||
DATABASE DAY_P DEALLOCATE DEC DECIMAL_P DECLARE DEFAULT DEFAULTS
|
DATABASE DAY_P DEALLOCATE DEC DECIMAL_P DECLARE DEFAULT DEFAULTS
|
||||||
@ -358,22 +358,24 @@ add_additional_variables(char *name, bool insert)
|
|||||||
|
|
||||||
KEY
|
KEY
|
||||||
|
|
||||||
LANCOMPILER LANGUAGE LAST_P LEADING LEFT LEVEL LIKE LIMIT LISTEN
|
LANCOMPILER LANGUAGE LARGE_P LAST_P LEADING LEFT LEVEL LIKE LIMIT LISTEN
|
||||||
LOAD LOCAL LOCATION LOCK_P
|
LOAD LOCAL LOCATION LOCK_P
|
||||||
|
|
||||||
MATCH MAXVALUE MINUTE_P MINVALUE MODE MONTH_P MOVE
|
MATCH MAXVALUE MINUTE_P MINVALUE MODE MONTH_P MOVE
|
||||||
|
|
||||||
NAMES NATIONAL NATURAL NCHAR NEW NEXT NO NOCREATEDB
|
NAMES NATIONAL NATURAL NCHAR NEW NEXT NO NOCREATEDB
|
||||||
NOCREATEUSER NONE NOT NOTHING NOTIFY NOTNULL NULL_P NULLIF
|
NOCREATEUSER NONE NOT NOTHING NOTIFY NOTNULL NOWAIT NULL_P
|
||||||
NUMERIC
|
NULLIF NUMERIC
|
||||||
|
|
||||||
OF OFF OFFSET OIDS OLD ON ONLY OPERATOR OPTION OR ORDER
|
OBJECT_P OF OFF OFFSET OIDS OLD ON ONLY OPERATOR OPTION OR ORDER
|
||||||
OUT_P OUTER_P OVERLAPS OVERLAY OWNER
|
OUT_P OUTER_P OVERLAPS OVERLAY OWNER
|
||||||
|
|
||||||
PARTIAL PASSWORD PATH_P PENDANT PLACING POSITION
|
PARTIAL PASSWORD PATH_P PENDANT PLACING POSITION
|
||||||
PRECISION PRESERVE PREPARE PRIMARY PRIOR PRIVILEGES PROCEDURAL PROCEDURE
|
PRECISION PRESERVE PREPARE PRIMARY PRIOR PRIVILEGES PROCEDURAL PROCEDURE
|
||||||
|
|
||||||
READ REAL RECHECK REFERENCES REINDEX RELATIVE_P RENAME REPLACE
|
QUOTE
|
||||||
|
|
||||||
|
READ REAL RECHECK REFERENCES REINDEX RELATIVE_P RENAME REPEATABLE REPLACE
|
||||||
RESET RESTART RESTRICT RETURNS REVOKE RIGHT ROLLBACK ROW ROWS RULE
|
RESET RESTART RESTRICT RETURNS REVOKE RIGHT ROLLBACK ROW ROWS RULE
|
||||||
|
|
||||||
SCHEMA SCROLL SECOND_P SECURITY SELECT SEQUENCE SERIALIZABLE
|
SCHEMA SCROLL SECOND_P SECURITY SELECT SEQUENCE SERIALIZABLE
|
||||||
@ -383,7 +385,7 @@ add_additional_variables(char *name, bool insert)
|
|||||||
|
|
||||||
TABLE TEMP TEMPLATE TEMPORARY THEN TIME TIMESTAMP TO TOAST
|
TABLE TEMP TEMPLATE TEMPORARY THEN TIME TIMESTAMP TO TOAST
|
||||||
TRAILING TRANSACTION TREAT TRIGGER TRIM TRUE_P TRUNCATE TRUSTED TYPE_P
|
TRAILING TRANSACTION TREAT TRIGGER TRIM TRUE_P TRUNCATE TRUSTED TYPE_P
|
||||||
UNENCRYPTED UNION UNIQUE UNKNOWN UNLISTEN UNTIL UPDATE USAGE
|
UNCOMMITTED UNENCRYPTED UNION UNIQUE UNKNOWN UNLISTEN UNTIL UPDATE USAGE
|
||||||
USER USING
|
USER USING
|
||||||
|
|
||||||
VACUUM VALID VALUES VARCHAR VARYING VERBOSE VERSION VIEW VOLATILE
|
VACUUM VALID VALUES VARCHAR VARYING VERBOSE VERSION VIEW VOLATILE
|
||||||
@ -455,8 +457,8 @@ add_additional_variables(char *name, bool insert)
|
|||||||
%type <str> opt_table opt_all sort_clause sortby_list ConstraintAttr
|
%type <str> opt_table opt_all sort_clause sortby_list ConstraintAttr
|
||||||
%type <str> sortby qualified_name_list name_list ColId_or_Sconst
|
%type <str> sortby qualified_name_list name_list ColId_or_Sconst
|
||||||
%type <str> group_clause having_clause from_clause opt_distinct opt_hold
|
%type <str> group_clause having_clause from_clause opt_distinct opt_hold
|
||||||
%type <str> join_outer where_clause relation_expr sub_type opt_arg
|
%type <str> join_outer where_clause relation_expr sub_type arg_class
|
||||||
%type <str> opt_column_list insert_rest InsertStmt
|
%type <str> opt_column_list insert_rest InsertStmt WithOidsAs param_name
|
||||||
%type <str> columnList DeleteStmt LockStmt UpdateStmt DeclareCursorStmt
|
%type <str> columnList DeleteStmt LockStmt UpdateStmt DeclareCursorStmt
|
||||||
%type <str> NotifyStmt columnElem UnlistenStmt TableElement rowdefinition
|
%type <str> NotifyStmt columnElem UnlistenStmt TableElement rowdefinition
|
||||||
%type <str> copy_delimiter ListenStmt CopyStmt copy_file_name opt_binary
|
%type <str> copy_delimiter ListenStmt CopyStmt copy_file_name opt_binary
|
||||||
@ -490,7 +492,7 @@ add_additional_variables(char *name, bool insert)
|
|||||||
%type <str> function_with_argtypes_list function_with_argtypes
|
%type <str> function_with_argtypes_list function_with_argtypes
|
||||||
%type <str> DropdbStmt ClusterStmt grantee RevokeStmt Bit DropOpClassStmt
|
%type <str> DropdbStmt ClusterStmt grantee RevokeStmt Bit DropOpClassStmt
|
||||||
%type <str> GrantStmt privileges PosAllConst constraints_set_list
|
%type <str> GrantStmt privileges PosAllConst constraints_set_list
|
||||||
%type <str> ConstraintsSetStmt AllConst CreateDomainStmt
|
%type <str> ConstraintsSetStmt AllConst CreateDomainStmt opt_nowait
|
||||||
%type <str> case_expr when_clause_list case_default case_arg when_clause
|
%type <str> case_expr when_clause_list case_default case_arg when_clause
|
||||||
%type <str> select_clause opt_select_limit select_limit_value opt_recheck
|
%type <str> select_clause opt_select_limit select_limit_value opt_recheck
|
||||||
%type <str> ConstraintTimeSpec AlterDatabaseSetStmt DropAssertStmt
|
%type <str> ConstraintTimeSpec AlterDatabaseSetStmt DropAssertStmt
|
||||||
@ -516,7 +518,7 @@ add_additional_variables(char *name, bool insert)
|
|||||||
%type <str> iso_level type_list CharacterWithLength ConstCharacter
|
%type <str> iso_level type_list CharacterWithLength ConstCharacter
|
||||||
%type <str> CharacterWithoutLength BitWithLength BitWithoutLength
|
%type <str> CharacterWithoutLength BitWithLength BitWithoutLength
|
||||||
%type <str> ConstBit GenericType TableFuncElementList opt_analyze
|
%type <str> ConstBit GenericType TableFuncElementList opt_analyze
|
||||||
%type <str> opt_sort_clause transaction_access_mode
|
%type <str> opt_sort_clause transaction_access_mode subquery_Op
|
||||||
|
|
||||||
%type <str> ECPGWhenever ECPGConnect connection_target ECPGOpen
|
%type <str> ECPGWhenever ECPGConnect connection_target ECPGOpen
|
||||||
%type <str> indicator ECPGExecute ECPGPrepare ecpg_using ecpg_into
|
%type <str> indicator ECPGExecute ECPGPrepare ecpg_using ecpg_into
|
||||||
@ -986,6 +988,9 @@ OptSchemaEltList: OptSchemaEltList schema_stmt { $$ = cat2_str($1, $2);
|
|||||||
* statement (in addition to by themselves).
|
* statement (in addition to by themselves).
|
||||||
*/
|
*/
|
||||||
schema_stmt: CreateStmt { $$ = $1; }
|
schema_stmt: CreateStmt { $$ = $1; }
|
||||||
|
| IndexStmt { $$ = $1; }
|
||||||
|
| CreateSeqStmt { $$ = $1; }
|
||||||
|
| CreateTrigStmt { $$ = $1; }
|
||||||
| GrantStmt { $$ = $1; }
|
| GrantStmt { $$ = $1; }
|
||||||
| ViewStmt { $$ = $1; }
|
| ViewStmt { $$ = $1; }
|
||||||
;
|
;
|
||||||
@ -1038,7 +1043,9 @@ var_list: var_value
|
|||||||
{ $$ = cat_str(3, $1, make_str(","), $3); }
|
{ $$ = cat_str(3, $1, make_str(","), $3); }
|
||||||
;
|
;
|
||||||
|
|
||||||
iso_level: READ COMMITTED { $$ = make_str("read committed"); }
|
iso_level: READ UNCOMMITTED { $$ = make_str("read uncommitted"); }
|
||||||
|
| READ COMMITTED { $$ = make_str("read committed"); }
|
||||||
|
| REPEATABLE READ { $$ = make_str("repeatable read"); }
|
||||||
| SERIALIZABLE { $$ = make_str("serializable"); }
|
| SERIALIZABLE { $$ = make_str("serializable"); }
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -1234,6 +1241,16 @@ copy_opt_item: BINARY { $$ = make_str("binary"); }
|
|||||||
{ $$ = cat_str(3, make_str("delimiter"), $2, $3); }
|
{ $$ = cat_str(3, make_str("delimiter"), $2, $3); }
|
||||||
| NULL_P opt_as StringConst
|
| NULL_P opt_as StringConst
|
||||||
{ $$ = cat_str(3, make_str("null"), $2, $3); }
|
{ $$ = cat_str(3, make_str("null"), $2, $3); }
|
||||||
|
| CSV { $$ = make_str("csv"); }
|
||||||
|
| QUOTE opt_as Sconst
|
||||||
|
{ $$ = cat_str(3, make_str("quote"), $2, $3); }
|
||||||
|
| ESCAPE opt_as Sconst
|
||||||
|
{ $$ = cat_str(3, make_str("escape"), $2, $3); }
|
||||||
|
| FORCE QUOTE columnList
|
||||||
|
{ $$ = cat2_str(make_str("force quote"), $3); }
|
||||||
|
| FORCE NOT NULL_P columnList
|
||||||
|
{ $$ = cat2_str(make_str("force not null"), $4); }
|
||||||
|
|
||||||
;
|
;
|
||||||
|
|
||||||
opt_binary: BINARY { $$ = make_str("binary"); }
|
opt_binary: BINARY { $$ = make_str("binary"); }
|
||||||
@ -1466,17 +1483,30 @@ OnCommitOption: ON COMMIT DROP { $$ = make_str("on commit drop"); }
|
|||||||
* SELECT ... INTO.
|
* SELECT ... INTO.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
CreateAsStmt: CREATE OptTemp TABLE qualified_name OptCreateAs AS
|
CreateAsStmt: CREATE OptTemp TABLE qualified_name OptCreateAs WithOidsAs AS
|
||||||
{ FoundInto = 0; }
|
{ FoundInto = 0; }
|
||||||
SelectStmt
|
SelectStmt
|
||||||
{
|
{
|
||||||
if (FoundInto == 1)
|
if (FoundInto == 1)
|
||||||
mmerror(PARSE_ERROR, ET_ERROR, "CREATE TABLE / AS SELECT may not specify INTO");
|
mmerror(PARSE_ERROR, ET_ERROR, "CREATE TABLE / AS SELECT may not specify INTO");
|
||||||
|
|
||||||
$$ = cat_str(7, make_str("create"), $2, make_str("table"), $4, $5, make_str("as"), $8);
|
$$ = cat_str(8, make_str("create"), $2, make_str("table"), $4, $5, $6, make_str("as"), $9);
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* To avoid a shift/reduce conflict in CreateAsStmt, we need to
|
||||||
|
* include the 'AS' terminal in the parsing of WITH/WITHOUT
|
||||||
|
* OIDS. Unfortunately that means this production is effectively a
|
||||||
|
* duplicate of OptWithOids.
|
||||||
|
*/
|
||||||
|
WithOidsAs:
|
||||||
|
WITH OIDS AS { $$ = make_str("with oids as"); }
|
||||||
|
| WITHOUT OIDS AS { $$ = make_str("without oids as"); }
|
||||||
|
| AS { $$ = make_str("as"); }
|
||||||
|
;
|
||||||
|
|
||||||
|
|
||||||
OptCreateAs: '(' CreateAsList ')'
|
OptCreateAs: '(' CreateAsList ')'
|
||||||
{ $$ = cat_str(3, make_str("("), $2, make_str(")")); }
|
{ $$ = cat_str(3, make_str("("), $2, make_str(")")); }
|
||||||
| /*EMPTY*/
|
| /*EMPTY*/
|
||||||
@ -1899,18 +1929,6 @@ from_in: IN_P { $$ = make_str("in"); }
|
|||||||
| FROM { $$ = make_str("from"); }
|
| FROM { $$ = make_str("from"); }
|
||||||
;
|
;
|
||||||
|
|
||||||
/*****************************************************************************
|
|
||||||
*
|
|
||||||
* The COMMENT ON statement can take different forms based upon the type of
|
|
||||||
* the object associated with the comment. The form of the statement is:
|
|
||||||
*
|
|
||||||
* COMMENT ON [ [ DATABASE | DOMAIN | INDEX | SEQUENCE | TABLE | TYPE | VIEW ]
|
|
||||||
* <objname> | AGGREGATE <aggname> (<aggtype>) | FUNCTION
|
|
||||||
* <funcname> (arg1, arg2, ...) | OPERATOR <op>
|
|
||||||
* (leftoperand_typ rightoperand_typ) | TRIGGER <triggername> ON
|
|
||||||
* <relname> | RULE <rulename> ON <relname> ] IS 'text'
|
|
||||||
*
|
|
||||||
*****************************************************************************/
|
|
||||||
CommentStmt: COMMENT ON comment_type name IS comment_text
|
CommentStmt: COMMENT ON comment_type name IS comment_text
|
||||||
{ $$ = cat_str(5, make_str("comment on"), $3, $4, make_str("is"), $6); }
|
{ $$ = cat_str(5, make_str("comment on"), $3, $4, make_str("is"), $6); }
|
||||||
| COMMENT ON AGGREGATE func_name '(' aggr_argtype ')' IS comment_text
|
| COMMENT ON AGGREGATE func_name '(' aggr_argtype ')' IS comment_text
|
||||||
@ -1925,6 +1943,14 @@ CommentStmt: COMMENT ON comment_type name IS comment_text
|
|||||||
{ $$ = cat_str(6, make_str("comment on rule"), $4, make_str("on"), $6, make_str("is"), $8); }
|
{ $$ = cat_str(6, make_str("comment on rule"), $4, make_str("on"), $6, make_str("is"), $8); }
|
||||||
| COMMENT ON RULE name IS comment_text
|
| COMMENT ON RULE name IS comment_text
|
||||||
{ $$ = cat_str(4, make_str("comment on rule"), $4, make_str("is"), $6); }
|
{ $$ = cat_str(4, make_str("comment on rule"), $4, make_str("is"), $6); }
|
||||||
|
| COMMENT ON OPERATOR CLASS any_name USING access_method IS comment_text
|
||||||
|
{ $$ = cat_str(6, make_str("comment on operator class"), $5, make_str("using"), $7, make_str("is"), $9); }
|
||||||
|
| COMMENT ON LARGE_P OBJECT_P NumConst IS comment_text
|
||||||
|
{ $$ = cat_str(4, make_str("comment on large object"), $5, make_str("is"), $7); }
|
||||||
|
| COMMENT ON CAST '(' Typename AS Typename ')' IS comment_text
|
||||||
|
{ $$ = cat_str(6, make_str("comment on cast ("), $5, make_str("as"), $7, make_str(") is"), $10); }
|
||||||
|
| COMMENT ON opt_procedural LANGUAGE any_name IS comment_text
|
||||||
|
{ $$ = cat_str(6, make_str("comment on"), $3, make_str("language"), $5, make_str("is"), $7); }
|
||||||
;
|
;
|
||||||
|
|
||||||
comment_type: COLUMN { $$ = make_str("column"); }
|
comment_type: COLUMN { $$ = make_str("column"); }
|
||||||
@ -1936,6 +1962,7 @@ comment_type: COLUMN { $$ = make_str("column"); }
|
|||||||
| DOMAIN_P { $$ = make_str("domain"); }
|
| DOMAIN_P { $$ = make_str("domain"); }
|
||||||
| TYPE_P { $$ = make_str("type"); }
|
| TYPE_P { $$ = make_str("type"); }
|
||||||
| VIEW { $$ = make_str("view"); }
|
| VIEW { $$ = make_str("view"); }
|
||||||
|
| CONVERSION_P { $$ = make_str("conversion"); }
|
||||||
;
|
;
|
||||||
|
|
||||||
comment_text: StringConst { $$ = $1; }
|
comment_text: StringConst { $$ = $1; }
|
||||||
@ -2095,18 +2122,11 @@ func_args_list: func_arg
|
|||||||
{ $$ = cat_str(3, $1, make_str(","), $3); }
|
{ $$ = cat_str(3, $1, make_str(","), $3); }
|
||||||
;
|
;
|
||||||
|
|
||||||
func_arg: opt_arg func_type
|
func_arg: arg_class param_name func_type { $$ = cat_str(3, $1, $2, $3); }
|
||||||
{
|
| arg_class func_type { $$ = cat2_str($1, $2); }
|
||||||
/* We can catch over-specified arguments here if we want to,
|
|
||||||
* but for now better to silently swallow typmod, etc.
|
|
||||||
* - thomas 2000-03-22
|
|
||||||
*/
|
|
||||||
$$ = cat2_str($1, $2);
|
|
||||||
}
|
|
||||||
| func_type { $$ = $1; }
|
|
||||||
;
|
;
|
||||||
|
|
||||||
opt_arg: IN_P { $$ = make_str("in"); }
|
arg_class: IN_P { $$ = make_str("in"); }
|
||||||
| OUT_P
|
| OUT_P
|
||||||
{
|
{
|
||||||
mmerror(PARSE_ERROR, ET_WARNING, "Currently unsupported CREATE FUNCTION/OUT will be passed to backend");
|
mmerror(PARSE_ERROR, ET_WARNING, "Currently unsupported CREATE FUNCTION/OUT will be passed to backend");
|
||||||
@ -2119,6 +2139,8 @@ opt_arg: IN_P { $$ = make_str("in"); }
|
|||||||
|
|
||||||
$$ = make_str("inout");
|
$$ = make_str("inout");
|
||||||
}
|
}
|
||||||
|
| /*EMPTY*/
|
||||||
|
{ $$ = EMPTY; }
|
||||||
;
|
;
|
||||||
|
|
||||||
func_as: StringConst
|
func_as: StringConst
|
||||||
@ -2127,6 +2149,8 @@ func_as: StringConst
|
|||||||
{ $$ = cat_str(3, $1, make_str(","), $3); }
|
{ $$ = cat_str(3, $1, make_str(","), $3); }
|
||||||
;
|
;
|
||||||
|
|
||||||
|
param_name: function_name { $$ = $1; };
|
||||||
|
|
||||||
func_return: func_type
|
func_return: func_type
|
||||||
{
|
{
|
||||||
/* We can catch over-specified arguments here if we want to,
|
/* We can catch over-specified arguments here if we want to,
|
||||||
@ -2350,6 +2374,7 @@ event: SELECT { $$ = make_str("select"); }
|
|||||||
;
|
;
|
||||||
|
|
||||||
opt_instead: INSTEAD { $$ = make_str("instead"); }
|
opt_instead: INSTEAD { $$ = make_str("instead"); }
|
||||||
|
| ALSO { $$ = make_str("also"); }
|
||||||
| /*EMPTY*/ { $$ = EMPTY; }
|
| /*EMPTY*/ { $$ = EMPTY; }
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -2389,7 +2414,7 @@ UnlistenStmt: UNLISTEN qualified_name
|
|||||||
*
|
*
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
TransactionStmt: ABORT_P opt_transaction { $$ = make_str("rollback"); }
|
TransactionStmt: ABORT_P opt_transaction { $$ = make_str("rollback"); }
|
||||||
| BEGIN_P opt_transaction { $$ = make_str("begin transaction"); }
|
| BEGIN_P opt_transaction transaction_mode_list_or_empty { $$ = cat2_str(make_str("begin transaction"), $3); }
|
||||||
| START TRANSACTION transaction_mode_list_or_empty { $$ = cat2_str(make_str("start transaction"), $3); }
|
| START TRANSACTION transaction_mode_list_or_empty { $$ = cat2_str(make_str("start transaction"), $3); }
|
||||||
| COMMIT opt_transaction { $$ = make_str("commit"); }
|
| COMMIT opt_transaction { $$ = make_str("commit"); }
|
||||||
| END_P opt_transaction { $$ = make_str("commit"); }
|
| END_P opt_transaction { $$ = make_str("commit"); }
|
||||||
@ -2721,8 +2746,8 @@ DeleteStmt: DELETE_P FROM relation_expr where_clause
|
|||||||
{ $$ = cat_str(3, make_str("delete from"), $3, $4); }
|
{ $$ = cat_str(3, make_str("delete from"), $3, $4); }
|
||||||
;
|
;
|
||||||
|
|
||||||
LockStmt: LOCK_P opt_table qualified_name_list opt_lock
|
LockStmt: LOCK_P opt_table qualified_name_list opt_lock opt_nowait
|
||||||
{ $$ = cat_str(4, make_str("lock"), $2, $3, $4); }
|
{ $$ = cat_str(5, make_str("lock"), $2, $3, $4, $5); }
|
||||||
;
|
;
|
||||||
|
|
||||||
opt_lock: IN_P lock_type MODE
|
opt_lock: IN_P lock_type MODE
|
||||||
@ -2741,6 +2766,10 @@ lock_type: ACCESS SHARE { $$ = make_str("access share"); }
|
|||||||
| ACCESS EXCLUSIVE { $$ = make_str("access exclusive"); }
|
| ACCESS EXCLUSIVE { $$ = make_str("access exclusive"); }
|
||||||
;
|
;
|
||||||
|
|
||||||
|
opt_nowait: NOWAIT { $$ = make_str("nowait"); }
|
||||||
|
| /* EMPTY */ { $$ = EMPTY; }
|
||||||
|
;
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
*
|
*
|
||||||
* QUERY:
|
* QUERY:
|
||||||
@ -3376,11 +3405,11 @@ r_expr: row IN_P select_with_parens
|
|||||||
{ $$ = cat_str(3, $1, make_str("in"), $3); }
|
{ $$ = cat_str(3, $1, make_str("in"), $3); }
|
||||||
| row NOT IN_P select_with_parens
|
| row NOT IN_P select_with_parens
|
||||||
{ $$ = cat_str(3, $1, make_str("not in"), $4); }
|
{ $$ = cat_str(3, $1, make_str("not in"), $4); }
|
||||||
| row qual_all_Op sub_type select_with_parens %prec Op
|
| row subquery_Op sub_type select_with_parens %prec Op
|
||||||
{ $$ = cat_str(4, $1, $2, $3, $4); }
|
{ $$ = cat_str(4, $1, $2, $3, $4); }
|
||||||
| row qual_all_Op select_with_parens %prec Op
|
| row subquery_Op select_with_parens %prec Op
|
||||||
{ $$ = cat_str(3, $1, $2, $3); }
|
{ $$ = cat_str(3, $1, $2, $3); }
|
||||||
| row qual_all_Op row %prec Op
|
| row subquery_Op row %prec Op
|
||||||
{ $$ = cat_str(3, $1, $2, $3); }
|
{ $$ = cat_str(3, $1, $2, $3); }
|
||||||
| row IS NULL_P
|
| row IS NULL_P
|
||||||
{ $$ = cat2_str($1, make_str("is null")); }
|
{ $$ = cat2_str($1, make_str("is null")); }
|
||||||
@ -3434,6 +3463,14 @@ qual_all_Op: all_Op { $$ = $1; }
|
|||||||
| OPERATOR '(' any_operator ')' { $$ = cat_str(3, make_str("operator ("), $3, make_str(")")); }
|
| OPERATOR '(' any_operator ')' { $$ = cat_str(3, make_str("operator ("), $3, make_str(")")); }
|
||||||
;
|
;
|
||||||
|
|
||||||
|
subquery_Op: all_Op { $$ = $1; }
|
||||||
|
| OPERATOR '(' any_operator ')' { $$ = cat_str(3, make_str("operator ("), $3, make_str(")")); }
|
||||||
|
| LIKE { $$ = make_str("like"); }
|
||||||
|
| NOT LIKE { $$ = make_str("not like"); }
|
||||||
|
| ILIKE { $$ = make_str("ilike"); }
|
||||||
|
| NOT ILIKE { $$ = make_str("not ilike"); }
|
||||||
|
;
|
||||||
|
|
||||||
/* General expressions
|
/* General expressions
|
||||||
* This is the heart of the expression syntax.
|
* This is the heart of the expression syntax.
|
||||||
*
|
*
|
||||||
@ -3574,9 +3611,9 @@ a_expr: c_expr
|
|||||||
{ $$ = cat_str(3, $1, make_str("in"), $3); }
|
{ $$ = cat_str(3, $1, make_str("in"), $3); }
|
||||||
| a_expr NOT IN_P in_expr
|
| a_expr NOT IN_P in_expr
|
||||||
{ $$ = cat_str(3, $1, make_str("not in"), $4); }
|
{ $$ = cat_str(3, $1, make_str("not in"), $4); }
|
||||||
| a_expr qual_all_Op sub_type select_with_parens %prec Op
|
| a_expr subquery_Op sub_type select_with_parens %prec Op
|
||||||
{ $$ = cat_str(4, $1, $2, $3, $4); }
|
{ $$ = cat_str(4, $1, $2, $3, $4); }
|
||||||
| a_expr qual_all_Op sub_type '(' a_expr ')' %prec Op
|
| a_expr subquery_Op sub_type '(' a_expr ')' %prec Op
|
||||||
{ $$ = cat_str(6, $1, $2, $3, make_str("("), $5, make_str(")")); }
|
{ $$ = cat_str(6, $1, $2, $3, make_str("("), $5, make_str(")")); }
|
||||||
| UNIQUE select_with_parens %prec Op
|
| UNIQUE select_with_parens %prec Op
|
||||||
{ $$ = cat2_str(make_str("unique"), $2); }
|
{ $$ = cat2_str(make_str("unique"), $2); }
|
||||||
@ -5730,6 +5767,7 @@ ECPGunreserved: ABORT_P { $$ = make_str("abort"); }
|
|||||||
| COPY { $$ = make_str("copy"); }
|
| COPY { $$ = make_str("copy"); }
|
||||||
| CREATEDB { $$ = make_str("createdb"); }
|
| CREATEDB { $$ = make_str("createdb"); }
|
||||||
| CREATEUSER { $$ = make_str("createuser"); }
|
| CREATEUSER { $$ = make_str("createuser"); }
|
||||||
|
| CSV { $$ = make_str("csv"); }
|
||||||
| CURSOR { $$ = make_str("cursor"); }
|
| CURSOR { $$ = make_str("cursor"); }
|
||||||
| CYCLE { $$ = make_str("cycle"); }
|
| CYCLE { $$ = make_str("cycle"); }
|
||||||
| DATABASE { $$ = make_str("database"); }
|
| DATABASE { $$ = make_str("database"); }
|
||||||
@ -5768,7 +5806,6 @@ ECPGunreserved: ABORT_P { $$ = make_str("abort"); }
|
|||||||
| INCREMENT { $$ = make_str("increment"); }
|
| INCREMENT { $$ = make_str("increment"); }
|
||||||
| INDEX { $$ = make_str("index"); }
|
| INDEX { $$ = make_str("index"); }
|
||||||
| INHERITS { $$ = make_str("inherits"); }
|
| INHERITS { $$ = make_str("inherits"); }
|
||||||
| INOUT { $$ = make_str("inout"); }
|
|
||||||
| INSENSITIVE { $$ = make_str("insensitive"); }
|
| INSENSITIVE { $$ = make_str("insensitive"); }
|
||||||
| INSERT { $$ = make_str("insert"); }
|
| INSERT { $$ = make_str("insert"); }
|
||||||
| INSTEAD { $$ = make_str("instead"); }
|
| INSTEAD { $$ = make_str("instead"); }
|
||||||
@ -5776,6 +5813,7 @@ ECPGunreserved: ABORT_P { $$ = make_str("abort"); }
|
|||||||
| KEY { $$ = make_str("key"); }
|
| KEY { $$ = make_str("key"); }
|
||||||
| LANCOMPILER { $$ = make_str("lancompiler"); }
|
| LANCOMPILER { $$ = make_str("lancompiler"); }
|
||||||
| LANGUAGE { $$ = make_str("language"); }
|
| LANGUAGE { $$ = make_str("language"); }
|
||||||
|
| LARGE_P { $$ = make_str("large"); }
|
||||||
| LAST_P { $$ = make_str("last"); }
|
| LAST_P { $$ = make_str("last"); }
|
||||||
| LEVEL { $$ = make_str("level"); }
|
| LEVEL { $$ = make_str("level"); }
|
||||||
| LISTEN { $$ = make_str("listen"); }
|
| LISTEN { $$ = make_str("listen"); }
|
||||||
@ -5791,35 +5829,35 @@ ECPGunreserved: ABORT_P { $$ = make_str("abort"); }
|
|||||||
/* | MONTH_P { $$ = make_str("month"); }*/
|
/* | MONTH_P { $$ = make_str("month"); }*/
|
||||||
| MOVE { $$ = make_str("move"); }
|
| MOVE { $$ = make_str("move"); }
|
||||||
| NAMES { $$ = make_str("names"); }
|
| NAMES { $$ = make_str("names"); }
|
||||||
| NATIONAL { $$ = make_str("national"); }
|
|
||||||
| NEXT { $$ = make_str("next"); }
|
| NEXT { $$ = make_str("next"); }
|
||||||
| NO { $$ = make_str("no"); }
|
| NO { $$ = make_str("no"); }
|
||||||
| NOCREATEDB { $$ = make_str("nocreatedb"); }
|
| NOCREATEDB { $$ = make_str("nocreatedb"); }
|
||||||
| NOCREATEUSER { $$ = make_str("nocreateuser"); }
|
| NOCREATEUSER { $$ = make_str("nocreateuser"); }
|
||||||
| NOTHING { $$ = make_str("nothing"); }
|
| NOTHING { $$ = make_str("nothing"); }
|
||||||
| NOTIFY { $$ = make_str("notify"); }
|
| NOTIFY { $$ = make_str("notify"); }
|
||||||
|
| OBJECT_P { $$ = make_str("object"); }
|
||||||
| OF { $$ = make_str("of"); }
|
| OF { $$ = make_str("of"); }
|
||||||
| OIDS { $$ = make_str("oids"); }
|
| OIDS { $$ = make_str("oids"); }
|
||||||
| OPERATOR { $$ = make_str("operator"); }
|
| OPERATOR { $$ = make_str("operator"); }
|
||||||
| OPTION { $$ = make_str("option"); }
|
| OPTION { $$ = make_str("option"); }
|
||||||
| OUT_P { $$ = make_str("out"); }
|
|
||||||
| OWNER { $$ = make_str("owner"); }
|
| OWNER { $$ = make_str("owner"); }
|
||||||
| PARTIAL { $$ = make_str("partial"); }
|
| PARTIAL { $$ = make_str("partial"); }
|
||||||
| PASSWORD { $$ = make_str("password"); }
|
| PASSWORD { $$ = make_str("password"); }
|
||||||
| PATH_P { $$ = make_str("path"); }
|
| PATH_P { $$ = make_str("path"); }
|
||||||
| PENDANT { $$ = make_str("pendant"); }
|
| PENDANT { $$ = make_str("pendant"); }
|
||||||
| PRECISION { $$ = make_str("precision"); }
|
|
||||||
| PREPARE { $$ = make_str("prepare"); }
|
| PREPARE { $$ = make_str("prepare"); }
|
||||||
| PRESERVE { $$ = make_str("preserver"); }
|
| PRESERVE { $$ = make_str("preserver"); }
|
||||||
| PRIOR { $$ = make_str("prior"); }
|
| PRIOR { $$ = make_str("prior"); }
|
||||||
| PRIVILEGES { $$ = make_str("privileges"); }
|
| PRIVILEGES { $$ = make_str("privileges"); }
|
||||||
| PROCEDURAL { $$ = make_str("procedural"); }
|
| PROCEDURAL { $$ = make_str("procedural"); }
|
||||||
| PROCEDURE { $$ = make_str("procedure"); }
|
| PROCEDURE { $$ = make_str("procedure"); }
|
||||||
|
| QUOTE { $$ = make_str("quote"); }
|
||||||
| READ { $$ = make_str("read"); }
|
| READ { $$ = make_str("read"); }
|
||||||
| RECHECK { $$ = make_str("recheck"); }
|
| RECHECK { $$ = make_str("recheck"); }
|
||||||
| REINDEX { $$ = make_str("reindex"); }
|
| REINDEX { $$ = make_str("reindex"); }
|
||||||
| RELATIVE_P { $$ = make_str("relative"); }
|
| RELATIVE_P { $$ = make_str("relative"); }
|
||||||
| RENAME { $$ = make_str("rename"); }
|
| RENAME { $$ = make_str("rename"); }
|
||||||
|
| REPEATABLE { $$ = make_str("repeatable"); }
|
||||||
| REPLACE { $$ = make_str("replace"); }
|
| REPLACE { $$ = make_str("replace"); }
|
||||||
| RESET { $$ = make_str("reset"); }
|
| RESET { $$ = make_str("reset"); }
|
||||||
| RESTART { $$ = make_str("restart"); }
|
| RESTART { $$ = make_str("restart"); }
|
||||||
@ -5857,6 +5895,7 @@ ECPGunreserved: ABORT_P { $$ = make_str("abort"); }
|
|||||||
| TRUNCATE { $$ = make_str("truncate"); }
|
| TRUNCATE { $$ = make_str("truncate"); }
|
||||||
| TRUSTED { $$ = make_str("trusted"); }
|
| TRUSTED { $$ = make_str("trusted"); }
|
||||||
| TYPE_P { $$ = make_str("type"); }
|
| TYPE_P { $$ = make_str("type"); }
|
||||||
|
| UNCOMMITTED { $$ = make_str("uncommitted"); }
|
||||||
| UNENCRYPTED { $$ = make_str("unencrypted"); }
|
| UNENCRYPTED { $$ = make_str("unencrypted"); }
|
||||||
| UNKNOWN { $$ = make_str("unknown"); }
|
| UNKNOWN { $$ = make_str("unknown"); }
|
||||||
| UNLISTEN { $$ = make_str("unlisten"); }
|
| UNLISTEN { $$ = make_str("unlisten"); }
|
||||||
@ -5901,16 +5940,21 @@ col_name_keyword:
|
|||||||
| EXISTS { $$ = make_str("exists"); }
|
| EXISTS { $$ = make_str("exists"); }
|
||||||
| EXTRACT { $$ = make_str("extract"); }
|
| EXTRACT { $$ = make_str("extract"); }
|
||||||
| FLOAT_P { $$ = make_str("float"); }
|
| FLOAT_P { $$ = make_str("float"); }
|
||||||
|
| INOUT { $$ = make_str("inout"); }
|
||||||
/* INT must be excluded from ECPGColLabel because of conflict
|
/* INT must be excluded from ECPGColLabel because of conflict
|
||||||
| INT_P { $$ = make_str("int"); }
|
| INT_P { $$ = make_str("int"); }
|
||||||
*/
|
*/
|
||||||
| INTEGER { $$ = make_str("integer"); }
|
| INTEGER { $$ = make_str("integer"); }
|
||||||
| INTERVAL { $$ = make_str("interval"); }
|
| INTERVAL { $$ = make_str("interval"); }
|
||||||
|
| NATIONAL { $$ = make_str("national"); }
|
||||||
| NCHAR { $$ = make_str("nchar"); }
|
| NCHAR { $$ = make_str("nchar"); }
|
||||||
| NONE { $$ = make_str("none"); }
|
| NONE { $$ = make_str("none"); }
|
||||||
| NULLIF { $$ = make_str("nullif"); }
|
| NULLIF { $$ = make_str("nullif"); }
|
||||||
| NUMERIC { $$ = make_str("numeric"); }
|
| NUMERIC { $$ = make_str("numeric"); }
|
||||||
|
| OUT_P { $$ = make_str("out"); }
|
||||||
|
| OVERLAY { $$ = make_str("overlay"); }
|
||||||
| POSITION { $$ = make_str("position"); }
|
| POSITION { $$ = make_str("position"); }
|
||||||
|
| PRECISION { $$ = make_str("precision"); }
|
||||||
| REAL { $$ = make_str("real"); }
|
| REAL { $$ = make_str("real"); }
|
||||||
| ROW { $$ = make_str("row"); }
|
| ROW { $$ = make_str("row"); }
|
||||||
| SETOF { $$ = make_str("setof"); }
|
| SETOF { $$ = make_str("setof"); }
|
||||||
@ -5941,7 +5985,6 @@ func_name_keyword:
|
|||||||
| FREEZE { $$ = make_str("freeze"); }
|
| FREEZE { $$ = make_str("freeze"); }
|
||||||
| FULL { $$ = make_str("full"); }
|
| FULL { $$ = make_str("full"); }
|
||||||
| ILIKE { $$ = make_str("ilike"); }
|
| ILIKE { $$ = make_str("ilike"); }
|
||||||
| IN_P { $$ = make_str("in"); }
|
|
||||||
| INNER_P { $$ = make_str("inner"); }
|
| INNER_P { $$ = make_str("inner"); }
|
||||||
| IS { $$ = make_str("is"); }
|
| IS { $$ = make_str("is"); }
|
||||||
| ISNULL { $$ = make_str("isnull"); }
|
| ISNULL { $$ = make_str("isnull"); }
|
||||||
@ -5999,6 +6042,7 @@ reserved_keyword:
|
|||||||
| GRANT { $$ = make_str("grant"); }
|
| GRANT { $$ = make_str("grant"); }
|
||||||
| GROUP_P { $$ = make_str("group"); }
|
| GROUP_P { $$ = make_str("group"); }
|
||||||
| HAVING { $$ = make_str("having"); }
|
| HAVING { $$ = make_str("having"); }
|
||||||
|
| IN_P { $$ = make_str("in"); }
|
||||||
| INITIALLY { $$ = make_str("initially"); }
|
| INITIALLY { $$ = make_str("initially"); }
|
||||||
| INTERSECT { $$ = make_str("intersect"); }
|
| INTERSECT { $$ = make_str("intersect"); }
|
||||||
| INTO { $$ = make_str("into"); }
|
| INTO { $$ = make_str("into"); }
|
||||||
@ -6006,6 +6050,7 @@ reserved_keyword:
|
|||||||
| LIMIT { $$ = make_str("limit"); }
|
| LIMIT { $$ = make_str("limit"); }
|
||||||
| NEW { $$ = make_str("new"); }
|
| NEW { $$ = make_str("new"); }
|
||||||
| NOT { $$ = make_str("not"); }
|
| NOT { $$ = make_str("not"); }
|
||||||
|
| NOWAIT { $$ = make_str("nowait"); }
|
||||||
| NULL_P { $$ = make_str("null"); }
|
| NULL_P { $$ = make_str("null"); }
|
||||||
| OFF { $$ = make_str("off"); }
|
| OFF { $$ = make_str("off"); }
|
||||||
| OFFSET { $$ = make_str("offset"); }
|
| OFFSET { $$ = make_str("offset"); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user