From: jonas Date: February 20 2006 7:59am Subject: bk commit into 5.1 tree (jonas:1.2141) List-Archive: http://lists.mysql.com/commits/2888 Message-Id: <20060220075946.3CA482E5725@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 1.2141 06/02/20 08:59:41 jonas@stripped +1 -0 ndb - Fix online ordered index build of varsize table storage/ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp 1.18 06/02/20 08:59:38 jonas@stripped +1 -1 Fix online ordered index build of varsize table # 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/mysql-5.1-release --- 1.17/storage/ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp 2006-02-13 13:12:42 +01:00 +++ 1.18/storage/ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp 2006-02-20 08:59:38 +01:00 @@ -452,7 +452,7 @@ } // set to first tuple position - const Uint32 firstTupleNo = ! buildPtr.p->m_build_vs ? 0 : 1; + const Uint32 firstTupleNo = 0; buildPtr.p->m_fragNo= 0; buildPtr.p->m_pageId= 0; buildPtr.p->m_tupleNo= firstTupleNo;