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.
This commit is contained in:
cmiller@zippy.cornsilk.net 2007-10-10 08:19:01 -04:00
parent 71d5c5350a
commit af8fe98cfc

View File

@ -6900,11 +6900,11 @@ opt_table_sym:
opt_profile_defs:
/* empty */
| profile_defs
| profile_defs;
profile_defs:
profile_def
| profile_defs ',' profile_def
| profile_defs ',' profile_def;
profile_def:
CPU_SYM