Commit f8820128 authored by unknown's avatar unknown

testOIBasic


ndb/test/ndbapi/testOIBasic.cpp:
  Start transaction does not take argument
parent ba5e2c29
......@@ -2301,7 +2301,7 @@ scanupdatetable(Par par)
// updating trans
Con con2;
con2.m_ndb = con.m_ndb;
CHK(con2.startTransaction(con) == 0);
CHK(con2.startTransaction() == 0);
while (1) {
int ret;
CHK((ret = con.nextScanResult()) == 0 || ret == 1);
......@@ -2347,7 +2347,7 @@ scanupdateindex(Par par, const ITab& itab, const BSet& bset)
// updating trans
Con con2;
con2.m_ndb = con.m_ndb;
CHK(con2.startTransaction(con) == 0);
CHK(con2.startTransaction() == 0);
while (1) {
int ret;
CHK((ret = con.nextScanResult()) == 0 || ret == 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment