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:
parent
5008a4e720
commit
e9f437dbcd
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user