1
0
mirror of https://github.com/MariaDB/server.git synced 2025-10-31 15:50:51 +03:00

drop table after test (if created & success)

This commit is contained in:
joreland@mysql.com
2004-09-15 15:57:12 +02:00
parent 8870f53e33
commit 27a4e6e29e
2 changed files with 5 additions and 4 deletions

View File

@@ -859,6 +859,11 @@ void NDBT_TestSuite::execute(Ndb* ndb, const NdbDictionary::Table* pTab,
else
numTestsOk++;
numTestsExecuted++;
if (result == NDBT_OK && createTable == true){
pDict->dropTable(pTab->getName());
}
delete ctx;
}
}