summaryrefslogtreecommitdiff
path: root/sql/sql_yacc.yy
diff options
context:
space:
mode:
authorunknown <cmiller@zippy.cornsilk.net>2007-10-10 08:19:01 -0400
committerunknown <cmiller@zippy.cornsilk.net>2007-10-10 08:19:01 -0400
commite9f437dbcd39ca7f6bd5e50153577f998e25a7b2 (patch)
treee9d0b3c3fda3363c032810f2a96a0d1c2968e7fb /sql/sql_yacc.yy
parent5008a4e720a9ccd6ae82e9ce5f97f71727c463eb (diff)
downloadmariadb-git-e9f437dbcd39ca7f6bd5e50153577f998e25a7b2.tar.gz
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.
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r--sql/sql_yacc.yy4
1 files 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