diff options
author | unknown <joreland@mysql.com> | 2004-10-13 11:43:54 +0200 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2004-10-13 11:43:54 +0200 |
commit | 9acbb9c0f68c6d9e5d38ff6decfbce935bb79b9a (patch) | |
tree | 501946b71d502db92ce8468b3cac36d435b2e6e1 /ndb/test/ndbapi/testRestartGci.cpp | |
parent | d20bcbac6cfa54750e2a7bbe2a8a78751081b68b (diff) | |
download | mariadb-git-9acbb9c0f68c6d9e5d38ff6decfbce935bb79b9a.tar.gz |
Fix changed interface to HugoOperations
Diffstat (limited to 'ndb/test/ndbapi/testRestartGci.cpp')
-rw-r--r-- | ndb/test/ndbapi/testRestartGci.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ndb/test/ndbapi/testRestartGci.cpp b/ndb/test/ndbapi/testRestartGci.cpp index 4cdfca29e6f..e817245af55 100644 --- a/ndb/test/ndbapi/testRestartGci.cpp +++ b/ndb/test/ndbapi/testRestartGci.cpp @@ -63,7 +63,7 @@ int runInsertRememberGci(NDBT_Context* ctx, NDBT_Step* step){ result = NDBT_FAILED; break; } - CHECK(hugoOps.pkReadRecord(pNdb, i, false) == 0); + CHECK(hugoOps.pkReadRecord(pNdb, i) == 0); if (hugoOps.execute_Commit(pNdb) != 0){ ndbout << "Did not find record in DB " << i << endl; result = NDBT_FAILED; @@ -146,7 +146,7 @@ int runVerifyInserts(NDBT_Context* ctx, NDBT_Step* step){ // gci as in the vector for (unsigned i = 0; i < savedRecords.size(); i++){ CHECK(hugoOps.startTransaction(pNdb) == 0); - CHECK(hugoOps.pkReadRecord(pNdb, i, false) == 0); + CHECK(hugoOps.pkReadRecord(pNdb, i) == 0); if (hugoOps.execute_Commit(pNdb) != 0){ // Record was not found in db' |