From: Date: March 2 2007 6:47pm Subject: bk commit into 5.1 tree (jonas:1.2424) BUG#15632 List-Archive: http://lists.mysql.com/commits/21043 X-Bug: 15632 Message-Id: <20070302174737.81D7542B0B7@eel.mysql.com> 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-03-02 18:47:30+01:00, jonas@eel.(none) +1 -0 ndb - bug#15632 fix testNodeRestart -n Bug15632 handle version > 5 storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp@stripped, 2007-03-02 18:47:27+01:00, jonas@eel.(none) +5 -2 fix testNodeRestart -n Bug15632 handle version > 5 # 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/51-work --- 1.103/storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp 2007-03-02 18:47:37 +01:00 +++ 1.104/storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp 2007-03-02 18:47:37 +01:00 @@ -2035,8 +2035,11 @@ /*-------------------------------------------------------------------------*/ Uint32 startVersion = getNodeInfo(c_nodeStartMaster.startNode).m_version; - if ((getMajor(startVersion) == 4 && startVersion >= NDBD_INCL_NODECONF_VERSION_4) || - (getMajor(startVersion) == 5 && startVersion >= NDBD_INCL_NODECONF_VERSION_5)) + if ((getMajor(startVersion) == 4 && + startVersion >= NDBD_INCL_NODECONF_VERSION_4) || + (getMajor(startVersion) == 5 && + startVersion >= NDBD_INCL_NODECONF_VERSION_5) || + (getMajor(startVersion) > 5)) { c_INCL_NODEREQ_Counter.setWaitingFor(c_nodeStartMaster.startNode); }