From: Date: May 16 2006 4:17pm Subject: bk commit into 5.0 tree (pekka:1.2126) BUG#14509 List-Archive: http://lists.mysql.com/commits/6467 X-Bug: 14509 Message-Id: <200605161417.k4GEHjVC025110@orca.ndb.mysql.com> Below is the list of changes that have just been committed into a local 5.0 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 1.2126 06/05/16 16:17:30 pekka@stripped +1 -0 ndb - bug#14509 [related] fix a return value ndb/src/ndbapi/Ndb.cpp 1.58 06/05/16 16:14:36 pekka@stripped +2 -2 fix a return value # 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: pekka # Host: orca.ndb.mysql.com # Root: /space/pekka/ndb/version/my50-bug14509 --- 1.57/ndb/src/ndbapi/Ndb.cpp 2006-05-16 12:44:11 +02:00 +++ 1.58/ndb/src/ndbapi/Ndb.cpp 2006-05-16 16:14:36 +02:00 @@ -934,13 +934,13 @@ * if value <= NEXTID, do nothing. otherwise update NEXTID to * value and set cached range to first = last = value - 1. */ - DBUG_RETURN((opTupleIdOnNdb(info, val, 2) == val)); + DBUG_RETURN((opTupleIdOnNdb(info, val, 2))); } else /* * update NEXTID to given value. reset cached range. */ - DBUG_RETURN((opTupleIdOnNdb(info, val, 1) == val)); + DBUG_RETURN((opTupleIdOnNdb(info, val, 1))); } Uint64