From af8fe98cfcfd39a37298bd04a967c5705ef208b0 Mon Sep 17 00:00:00 2001 From: "cmiller@zippy.cornsilk.net" <> Date: Wed, 10 Oct 2007 08:19:01 -0400 Subject: [PATCH] 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 21eb7cbc14c..9952cc7e659 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -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