List:Commits« Previous MessageNext Message »
From:jonas Date:May 31 2006 6:23am
Subject:bk commit into 5.1 tree (jonas:1.2378)
View as plain text  
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.2378 06/05/31 08:22:54 jonas@stripped +1 -0
  ndb - 
    fix return value of "testBasic -n InsertError2 T1"

  storage/ndb/test/ndbapi/testBasic.cpp
    1.14 06/05/31 08:22:51 jonas@stripped +2 -1
    fix 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:	jonas
# Host:	perch.ndb.mysql.com
# Root:	/home/jonas/src/51-jonas

--- 1.13/storage/ndb/test/ndbapi/testBasic.cpp	2006-05-19 16:29:44 +02:00
+++ 1.14/storage/ndb/test/ndbapi/testBasic.cpp	2006-05-31 08:22:51 +02:00
@@ -1242,11 +1242,12 @@
     CHECK(hugoOp1.pkInsertRecord(pNdb, 1) == 0);
     CHECK(hugoOp1.pkDeleteRecord(pNdb, 1) == 0);
     
-    CHECK(hugoOp1.execute_NoCommit(pNdb) == 0);
+    hugoOp1.execute_NoCommit(pNdb);
     CHECK(hugoOp1.closeTransaction(pNdb) == 0);
   }
   
   restarter.insertErrorInAllNodes(0);
+  return NDBT_OK;
 }
   
 NDBT_TESTSUITE(testBasic);
Thread
bk commit into 5.1 tree (jonas:1.2378)jonas1 Jun