List:Commits« Previous MessageNext Message »
From:Chad MILLER Date:October 10 2007 2:19pm
Subject:bk commit into 5.0-community tree (cmiller:1.2526) BUG#27433
View as plain text  
Below is the list of changes that have just been committed into a local
5.0-community repository of cmiller. When cmiller does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-10-10 08:19:01-04:00, cmiller@stripped +1 -0
  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@stripped, 2007-10-10 08:19:00-04:00, cmiller@stripped +2 -2
    Add semicolons to terminate rules.

diff -Nrup a/sql/sql_yacc.yy b/sql/sql_yacc.yy
--- a/sql/sql_yacc.yy	2007-09-10 08:01:25 -04:00
+++ b/sql/sql_yacc.yy	2007-10-10 08:19:00 -04:00
@@ -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
Thread
bk commit into 5.0-community tree (cmiller:1.2526) BUG#27433Chad MILLER10 Oct