From: Date: June 16 2007 11:16am Subject: bk commit into 5.1 tree (tomas:1.2521) BUG#28949 List-Archive: http://lists.mysql.com/commits/28922 X-Bug: 28949 Message-Id: <20070616091608.EAF5418195F06@linux.local> Below is the list of changes that have just been committed into a local 5.1 repository of tomas. When tomas 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-06-16 11:16:02+02:00, tomas@stripped +1 -0 Bug #28949 - handler binlog's must be shutdoem before logger.cleanup_base sql/mysqld.cc@stripped, 2007-06-16 11:15:59+02:00, tomas@stripped +3 -2 Bug #28949 - handler binlog's must be shutdoem before logger.cleanup_base # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: tomas # Host: whalegate.ndb.mysql.com # Root: /home/tomas/mysql-5.1-new-ndb --- 1.645/sql/mysqld.cc 2007-05-17 22:21:26 +02:00 +++ 1.646/sql/mysqld.cc 2007-06-16 11:15:59 +02:00 @@ -1143,13 +1143,14 @@ if (cleanup_done++) return; /* purecov: inspected */ - logger.cleanup_base(); - /* make sure that handlers finish up what they have that is dependent on the binlog */ ha_binlog_end(current_thd); + + logger.cleanup_base(); + injector::free_instance(); mysql_bin_log.cleanup();