Commit e9f437db authored by unknown's avatar unknown

Bug#27433: Parser error for MySQL 5.0.37 with Bison 1.75 for \

	sql_yacc.yy

Yacc rules lacked semicolons to terminate rules, which is illegal in
old versions of bison.

Added semicolons.


sql/sql_yacc.yy:
  Add semicolons to terminate rules.
parent 5008a4e7
...@@ -6900,11 +6900,11 @@ opt_table_sym: ...@@ -6900,11 +6900,11 @@ opt_table_sym:
opt_profile_defs: opt_profile_defs:
/* empty */ /* empty */
| profile_defs | profile_defs;
profile_defs: profile_defs:
profile_def profile_def
| profile_defs ',' profile_def | profile_defs ',' profile_def;
profile_def: profile_def:
CPU_SYM CPU_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