Commit 2bf1f4d9 authored by unknown's avatar unknown

sql_yacc.yy:

  Added missing ';'.


sql/sql_yacc.yy:
  Added missing ';'.
parent 0dd74621
...@@ -5607,7 +5607,7 @@ limit_option: ...@@ -5607,7 +5607,7 @@ limit_option:
| ULONGLONG_NUM { $$= new Item_uint($1.str, $1.length); } | ULONGLONG_NUM { $$= new Item_uint($1.str, $1.length); }
| LONG_NUM { $$= new Item_uint($1.str, $1.length); } | LONG_NUM { $$= new Item_uint($1.str, $1.length); }
| NUM { $$= new Item_uint($1.str, $1.length); } | NUM { $$= new Item_uint($1.str, $1.length); }
;
delete_limit_clause: delete_limit_clause:
/* empty */ /* empty */
......
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