mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
testDict.cpp:
Updated DropDDObjects in testDict to ignore the user tables created in the MySQL database storage/ndb/test/ndbapi/testDict.cpp: Updated DropDDObjects in testDict to ignore the user tables created in the MySQL database
This commit is contained in:
parent
7d26353f0c
commit
4d0c67c6d3
1 changed files with 7 additions and 3 deletions
|
|
@ -2776,9 +2776,13 @@ runDropDDObjects(NDBT_Context* ctx, NDBT_Step* step){
|
|||
case NdbDictionary::Object::UserTable:
|
||||
tableFound = list.elements[i].name;
|
||||
if(tableFound != 0){
|
||||
if(pDict->dropTable(tableFound) != 0){
|
||||
g_err << "Failed to drop table: " << pDict->getNdbError() << endl;
|
||||
return NDBT_FAILED;
|
||||
if(strcmp(tableFound, "ndb_apply_status") != 0 &&
|
||||
strcmp(tableFound, "NDB$BLOB_2_3") != 0 &&
|
||||
strcmp(tableFound, "ndb_schema") != 0){
|
||||
if(pDict->dropTable(tableFound) != 0){
|
||||
g_err << "Failed to drop table: " << tableFound << pDict->getNdbError() << endl;
|
||||
return NDBT_FAILED;
|
||||
}
|
||||
}
|
||||
}
|
||||
tableFound = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue