Commit 35684059 authored by unknown's avatar unknown

un-reserving "RETURNS"

parent e9e71445
......@@ -1076,20 +1076,20 @@ create:
;
create2:
'(' create2a {}
| opt_create_table_options create3 {}
| LIKE table_ident
{
LEX *lex=Lex;
if (!(lex->name= (char *)$2))
'(' create2a {}
| opt_create_table_options create3 {}
| LIKE table_ident
{
LEX *lex=Lex;
if (!(lex->name= (char *)$2))
YYABORT;
}
| '(' LIKE table_ident ')'
{
LEX *lex=Lex;
if (!(lex->name= (char *)$3))
}
| '(' LIKE table_ident ')'
{
LEX *lex=Lex;
if (!(lex->name= (char *)$3))
YYABORT;
}
}
;
create2a:
......@@ -5232,6 +5232,7 @@ keyword:
| TIME_SYM {}
| TYPE_SYM {}
| TYPES_SYM {}
| UDF_RETURNS_SYM {}
| UDF_SYM {}
| UNCOMMITTED_SYM {}
| UNICODE_SYM {}
......
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