ndb autotest -

Fix testcase so that it does not leak tables...causing subsequent errors
This commit is contained in:
jonas@eel.(none) 2007-02-16 01:36:22 +01:00
parent b95714e138
commit b030cc5516

View file

@ -321,7 +321,11 @@ int runCreateAndDropAtRandom(NDBT_Context* ctx, NDBT_Step* step)
}
i++;
}
for (Uint32 i = 0; i<numTables; i++)
if (tabList[i])
pDic->dropTable(NDBT_Tables::getTable(i)->getName());
delete [] tabList;
return result;
}