Commit cd47305d authored by unknown's avatar unknown

merge

parent 37b7e4c6
...@@ -1089,7 +1089,7 @@ int runBug_11133(NDBT_Context* ctx, NDBT_Step* step){ ...@@ -1089,7 +1089,7 @@ int runBug_11133(NDBT_Context* ctx, NDBT_Step* step){
C2(hugoOps.execute_Commit(pNdb) == 0); C2(hugoOps.execute_Commit(pNdb) == 0);
C2(hugoOps.closeTransaction(pNdb) == 0); C2(hugoOps.closeTransaction(pNdb) == 0);
Ndb ndb2("TEST_DB"); Ndb ndb2(&ctx->m_cluster_connection, "TEST_DB");
C2(ndb2.init() == 0); C2(ndb2.init() == 0);
C2(ndb2.waitUntilReady() == 0); C2(ndb2.waitUntilReady() == 0);
HugoOperations hugoOps2(*pTab); HugoOperations hugoOps2(*pTab);
......
...@@ -449,8 +449,9 @@ HugoOperations::wait_async(Ndb* pNdb, int timeout) ...@@ -449,8 +449,9 @@ HugoOperations::wait_async(Ndb* pNdb, int timeout)
return -1; return -1;
} }
HugoOperations::HugoOperations(const NdbDictionary::Table& _tab): HugoOperations::HugoOperations(const NdbDictionary::Table& _tab,
UtilTransactions(_tab), const NdbDictionary::Index* idx):
UtilTransactions(_tab, idx),
calc(_tab) calc(_tab)
{ {
} }
......
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