List:Commits« Previous MessageNext Message »
From:jonas Date:January 22 2007 5:09pm
Subject:bk commit into 5.1 tree (jonas:1.2092)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of jonas. When jonas 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-01-22 17:09:12+01:00, jonas@eel.(none) +1 -0
  ndb - bug in NODE_VERSION_REP
    Fix assertion in corner-case where signal isnt sent to any node
    (recommit in 5.1-wl2325-5.0)

  storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp@stripped, 2007-01-22 17:09:05+01:00,
jonas@eel.(none) +2 -1
    Fix assertion in corner-case where signal isnt sent to any node

# 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:	jonas
# Host:	eel.(none)
# Root:	/home/jonas/src/drop5

--- 1.37/storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp	2007-01-22 17:09:19 +01:00
+++ 1.38/storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp	2007-01-22 17:09:19 +01:00
@@ -2787,7 +2787,8 @@
 	sendSignal(numberToRef(rg.m_block, i), gsn, signal, length, jbuf);
       }
     }
-    ndbassert(cnt < rg.m_nodes.count());
+    ndbassert((cnt == 0 && rg.m_nodes.count() == 0) ||
+	      (cnt < rg.m_nodes.count()));
   }
 }
 
Thread
bk commit into 5.1 tree (jonas:1.2092)jonas22 Jan