Below is the list of changes that have just been committed into a local
5.0 repository of kgeorge. When kgeorge 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-07-30 16:03:52+03:00, gkodinov@stripped +1 -0
Moved the DBUG_ASSERT from bug 28983 to
a place where it would not obstruct
correct multithreading.
sql/log.cc@stripped, 2007-07-30 16:03:43+03:00, gkodinov@stripped +1 -0
Moved the DBUG_ASSERT from bug 28983 to
a place where it would not obstruct
correct multithreading.
diff -Nrup a/sql/log.cc b/sql/log.cc
--- a/sql/log.cc 2007-07-10 19:33:17 +03:00
+++ b/sql/log.cc 2007-07-30 16:03:43 +03:00
@@ -1833,6 +1833,7 @@ bool MYSQL_LOG::write(THD *thd, IO_CACHE
/* NULL would represent nothing to replicate after ROLLBACK */
DBUG_ASSERT(commit_event != NULL);
+ DBUG_ASSERT(is_open());
if (likely(is_open())) // Should always be true
{
uint length, group, carry, hdr_offs, val;