List:Commits« Previous MessageNext Message »
From:tomas Date:October 16 2007 11:02am
Subject:bk commit into 5.1 tree (tomas:1.2667) BUG#31618
View as plain text  
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-10-16 11:02:09+02:00, tomas@stripped +1 -0
  Bug #31618 ndb_binlog_discover test failure
  - make sure all tables are inited before binlog thread may run

  sql/ha_ndbcluster_binlog.cc@stripped, 2007-10-16 11:02:07+02:00,
tomas@stripped +2 -1
    Bug #31618 ndb_binlog_discover test failure
    - make sure all tables are inited before binlog thread may run

diff -Nrup a/sql/ha_ndbcluster_binlog.cc b/sql/ha_ndbcluster_binlog.cc
--- a/sql/ha_ndbcluster_binlog.cc	2007-10-15 23:40:59 +02:00
+++ b/sql/ha_ndbcluster_binlog.cc	2007-10-16 11:02:07 +02:00
@@ -4230,7 +4230,8 @@ restart:
 
     pthread_mutex_lock(&injector_mutex);
     while (!ndb_schema_share ||
-           (ndb_binlog_running && !ndb_apply_status_share))
+           (ndb_binlog_running && !ndb_apply_status_share) ||
+           !ndb_binlog_tables_inited)
     {
       /* ndb not connected yet */
       struct timespec abstime;
Thread
bk commit into 5.1 tree (tomas:1.2667) BUG#31618tomas16 Oct