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.
This commit is contained in:
unknown 2007-10-10 08:19:01 -04:00
parent 5008a4e720
commit e9f437dbcd

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