Commit 4a9defa3 authored by serg@serg.mylan's avatar serg@serg.mylan

un-reserving "RETURNS"

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