1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00
fix return value of "testBasic -n InsertError2 T1"
This commit is contained in:
jonas@perch.ndb.mysql.com
2006-05-31 08:22:54 +02:00
parent 8e0567e8ad
commit 9c20aa944d

View File

@ -1242,11 +1242,12 @@ runInsertError2(NDBT_Context* ctx, NDBT_Step* step){
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);