mirror of
https://github.com/MariaDB/server.git
synced 2025-08-05 13:16:09 +03:00
ndb - ndbapi testprogram bugfix
testBackup, fix assertion ndb/test/ndbapi/testBackup.cpp: Fetch table before verifying
This commit is contained in:
@@ -229,10 +229,13 @@ int runVerifyOne(NDBT_Context* ctx, NDBT_Step* step){
|
|||||||
int result = NDBT_OK;
|
int result = NDBT_OK;
|
||||||
int count = 0;
|
int count = 0;
|
||||||
|
|
||||||
ndbout << *(const NDBT_Table*)ctx->getTab() << endl;
|
const NdbDictionary::Table* tab =
|
||||||
|
GETNDB(step)->getDictionary()->getTable(ctx->getTab()->getName());
|
||||||
UtilTransactions utilTrans(*ctx->getTab());
|
if(tab == 0)
|
||||||
HugoTransactions hugoTrans(*ctx->getTab());
|
return NDBT_FAILED;
|
||||||
|
|
||||||
|
UtilTransactions utilTrans(* tab);
|
||||||
|
HugoTransactions hugoTrans(* tab);
|
||||||
|
|
||||||
do{
|
do{
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user