List:Commits« Previous MessageNext Message »
From:tomas Date:October 24 2007 9:28am
Subject:bk commit into 5.1 tree (tomas:1.2670)
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-24 11:27:54+02:00, tomas@stripped +1 -0
  remove ; that may cause retries on permanent error

  sql/ha_ndbcluster_binlog.cc@stripped, 2007-10-24 11:27:51+02:00, tomas@stripped +1 -1
    remove ; that may cause retries on permanent error

diff -Nrup a/sql/ha_ndbcluster_binlog.cc b/sql/ha_ndbcluster_binlog.cc
--- a/sql/ha_ndbcluster_binlog.cc	2007-10-16 17:04:46 +02:00
+++ b/sql/ha_ndbcluster_binlog.cc	2007-10-24 11:27:51 +02:00
@@ -3156,7 +3156,7 @@ ndbcluster_read_binlog_replication(THD *
     if (trans->execute(NdbTransaction::Commit,
                        NdbOperation::AO_IgnoreError))
     {
-      if (ndb->getNdbError().status == NdbError::TemporaryError);
+      if (ndb->getNdbError().status == NdbError::TemporaryError)
       {
         if (retries--)
         {
Thread
bk commit into 5.1 tree (tomas:1.2670)tomas24 Oct