From: Date: November 12 2007 1:07pm Subject: bk commit into 5.1 tree (istruewing:1.2613) BUG#31210 List-Archive: http://lists.mysql.com/commits/37571 X-Bug: 31210 Message-Id: Below is the list of changes that have just been committed into a local 5.1 repository of istruewing. When istruewing 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-11-12 13:07:54+01:00, istruewing@stripped +1 -0 Bug#31210 - INSERT DELAYED crashes server when used on partitioned table Post-pushbuild fix Pushbuild detected yet another need for lex initialization in embedded server. libmysqld/lib_sql.cc@stripped, 2007-11-12 13:07:52+01:00, istruewing@stripped +1 -0 Bug#31210 - INSERT DELAYED crashes server when used on partitioned table Initialized lex for later use in open_table(). diff -Nrup a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc --- a/libmysqld/lib_sql.cc 2007-11-11 20:38:26 +01:00 +++ b/libmysqld/lib_sql.cc 2007-11-12 13:07:52 +01:00 @@ -587,6 +587,7 @@ void *create_embedded_thd(int client_fla fprintf(stderr,"store_globals failed.\n"); goto err; } + lex_start(thd); /* TODO - add init_connect command execution */