From: Date: November 1 2007 8:00am Subject: bk commit into 5.0 tree (knielsen:1.2490) BUG#31848 List-Archive: http://lists.mysql.com/commits/36820 X-Bug: 31848 Message-Id: <1193900403.0@ymer> Below is the list of changes that have just been committed into a local 5.0 repository of knielsen. When knielsen 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-11-01 07:59:55+01:00, knielsen@ymer.(none) +1 -0 Bug #31848: Test failure: Cluster has problems on insert with auto-increment Fix uninitialized variable causing failures for some interpreted update operations on gcc 4.2.1. ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp@stripped, 2007-11-01 07:59:52+01:00, knielsen@ymer.(none) +2 -1 Fix uninitialized variable causing failures for some interpreted update operations on gcc 4.2.1. # 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: knielsen # Host: ymer.(none) # Root: /usr/local/mysql/mysql-5.0-ndb --- 1.26/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp 2007-11-01 08:00:02 +01:00 +++ 1.27/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp 2007-11-01 08:00:02 +01:00 @@ -1138,7 +1138,8 @@ Dbtup::updateStartLab(Signal* signal, regOperPtr->attrinbufLen); } else { jam(); - if (interpreterStartLab(signal, pagePtr, regOperPtr->pageOffset) == -1) + retValue = interpreterStartLab(signal, pagePtr, regOperPtr->pageOffset); + if (retValue == -1) { jam(); return -1;