From: Date: December 11 2006 4:18pm Subject: bk commit into 5.1 tree (jonas:1.2352) BUG#24664 List-Archive: http://lists.mysql.com/commits/16777 X-Bug: 24664 Message-Id: <20061211151839.3135263F381@perch.ndb.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, 2006-12-11 16:18:34+01:00, jonas@stripped +1 -0 ndb - bug#24664 Fix in bug fix, make sure LCP_SKIP is only used for inserts... storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp@stripped, 2006-12-11 16:18:32+01:00, jonas@stripped +1 -1 Make sure LCP_SKIP is only used for inserts # 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: perch.ndb.mysql.com # Root: /home/jonas/src/51-work --- 1.19/storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp 2006-12-11 16:18:39 +01:00 +++ 1.20/storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp 2006-12-11 16:18:39 +01:00 @@ -302,7 +302,7 @@ copy_bits |= Tuple_header::DISK_PART; } - if(lcpScan_ptr_i != RNIL) + if(lcpScan_ptr_i != RNIL && (bits & Tuple_header::ALLOC)) { ScanOpPtr scanOp; c_scanOpPool.getPtr(scanOp, lcpScan_ptr_i);