List:Commits« Previous MessageNext Message »
From:tomas Date:April 26 2007 10:50pm
Subject:bk commit into 5.1 tree (tomas:1.2467) BUG#25741
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-04-26 22:49:58+02:00, tomas@stripped +2 -0
  BUG#25741 AllocNodeIdRef::NodeFailureHandlingNotCompleted

  storage/ndb/src/mgmsrv/MgmtSrvr.cpp@stripped, 2007-04-26 22:49:56+02:00,
tomas@stripped +2 -1
    When running nodes return AllocNodeIdRef::NodeFailureHandlingNotCompleted error during
applying the node id for restarting nodes, it should try again.
    

  storage/ndb/src/ndbapi/ndberror.c@stripped, 2007-04-26 22:49:56+02:00,
tomas@stripped +1 -1
    change AllocNodeIdRef::NodeFailureHandlingNotCompleted error from permanent error to
temporary error

# 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-telco-gca

--- 1.119/storage/ndb/src/mgmsrv/MgmtSrvr.cpp	2007-03-21 08:59:54 +01:00
+++ 1.120/storage/ndb/src/mgmsrv/MgmtSrvr.cpp	2007-04-26 22:49:56 +02:00
@@ -2127,7 +2127,8 @@
       const AllocNodeIdRef * const ref =
         CAST_CONSTPTR(AllocNodeIdRef, signal->getDataPtr());
       if (ref->errorCode == AllocNodeIdRef::NotMaster ||
-          ref->errorCode == AllocNodeIdRef::Busy)
+          ref->errorCode == AllocNodeIdRef::Busy ||
+          ref->errorCode == AllocNodeIdRef::NodeFailureHandlingNotCompleted)
       {
         do_send = 1;
         nodeId = refToNode(ref->masterRef);

--- 1.86/storage/ndb/src/ndbapi/ndberror.c	2007-04-10 10:04:58 +02:00
+++ 1.87/storage/ndb/src/ndbapi/ndberror.c	2007-04-26 22:49:56 +02:00
@@ -470,7 +470,7 @@
   { 1700, DMEC, IE, "Undefined error" },
   { 1701, DMEC, AE, "Node already reserved" },
   { 1702, DMEC, AE, "Node already connected" },
-  { 1703, DMEC, AE, "Node failure handling not completed" },
+  { 1703, DMEC, IT, "Node failure handling not completed" },
   { 1704, DMEC, AE, "Node type mismatch" },
   
   /**
Thread
bk commit into 5.1 tree (tomas:1.2467) BUG#25741tomas26 Apr