From: Date: February 1 2008 12:15am Subject: bk commit into 5.1 tree (pekka:1.2704) BUG#31477 List-Archive: http://lists.mysql.com/commits/41535 X-Bug: 31477 Message-Id: <20080131231511.62E1623DEC@sama.localdomain> Below is the list of changes that have just been committed into a local 5.1 repository of pekka. When pekka 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, 2008-02-01 00:15:06+01:00, pekka@stripped +1 -0 ndb - handler - error code fix related to bug#31477 sql/ha_ndbcluster.cc@stripped, 2008-02-01 00:13:38+01:00, pekka@stripped +1 -1 error code fix related to bug#31477 diff -Nrup a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc --- a/sql/ha_ndbcluster.cc 2008-01-30 12:26:26 +01:00 +++ b/sql/ha_ndbcluster.cc 2008-02-01 00:13:38 +01:00 @@ -2597,7 +2597,7 @@ inline int ha_ndbcluster::fetch_next(Ndb } else { - DBUG_RETURN(-1); + DBUG_RETURN(ndb_err(trans)); } } while (local_check == 2);