From: Date: March 8 2005 3:26pm Subject: bk commit into 4.1 tree (joreland:1.2091) BUG#9052 List-Archive: http://lists.mysql.com/internals/22774 X-Bug: 9052 Message-Id: <200503081426.j28EQcDh004245@eel> Below is the list of changes that have just been committed into a local 4.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 1.2091 05/03/08 15:26:34 joreland@stripped +1 -0 bug#9052 - ndb - Use correct length during unique index build ndb/src/kernel/blocks/trix/Trix.cpp 1.6 05/03/08 15:26:32 joreland@stripped +1 -1 Use correct length during unique index build # 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: joreland # Host: eel.ndb.mysql.com # Root: /home/jonas/src/mysql-4.1 --- 1.5/ndb/src/kernel/blocks/trix/Trix.cpp Thu Dec 16 14:16:24 2004 +++ 1.6/ndb/src/kernel/blocks/trix/Trix.cpp Tue Mar 8 15:26:32 2005 @@ -712,7 +712,7 @@ subCreateReq->subscriptionType = SubCreateReq::SingleTableScan; sendSignal(SUMA_REF, GSN_SUB_CREATE_REQ, - signal, SubCreateReq::SignalLength, JBB, orderPtr, 1); + signal, SubCreateReq::SignalLength+1, JBB, orderPtr, 1); } void Trix::setupTableScan(Signal* signal, SubscriptionRecPtr subRecPtr)