mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Merge mysql.com:/home/jonas/src/mysql-5.0
into mysql.com:/home/jonas/src/mysql-5.0-push
This commit is contained in:
commit
570cfc8ecb
2 changed files with 4 additions and 3 deletions
|
@ -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)
|
||||||
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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue