[OPENJPA-2808] indicies are dropped in schema tool

This commit is contained in:
Maxim Solodovnik 2020-04-05 16:58:42 +07:00
parent beb125500f
commit 20f682eb7e
1 changed files with 50 additions and 9 deletions

View File

@ -971,21 +971,21 @@ public class SchemaTool {
continue; continue;
fks = tabs[j].getForeignKeys(); fks = tabs[j].getForeignKeys();
dbTable = db.findTable(tabs[j]); dbTable = db.findTable(tabs[j]);
if (dbTable == null) {
continue;
}
for (int k = 0; k < fks.length; k++) { for (int k = 0; k < fks.length; k++) {
if (fks[k].isLogical()) if (fks[k].isLogical())
continue; continue;
fk = null; fk = findForeignKey(dbTable, fks[k]);
if (dbTable != null) if (fk == null) {
fk = findForeignKey(dbTable, fks[k]);
if (dbTable == null || fk == null)
continue; continue;
}
if (dropForeignKey(fks[k])) if (dropForeignKey(fks[k])) {
if (dbTable != null) dbTable.removeForeignKey(fk);
dbTable.removeForeignKey(fk); }
else
_log.warn(_loc.get("drop-fk", fks[k], tabs[j]));
} }
} }
} }
@ -1008,6 +1008,47 @@ public class SchemaTool {
} }
} }
if (_indexes) {
Index idx;
for (int i = 0; i < schemas.length; ++i) {
tabs = schemas[i].getTables();
for (Table tab : schemas[i].getTables()) {
if (!isDroppable(tab)) {
continue;
}
dbTable = db.findTable(tab);
if (dbTable == null) {
continue;
}
for (Index index : tab.getIndexes()) {
idx = findIndex(dbTable, index);
if (idx == null) {
continue;
}
if (dropIndex(index)) {
dbTable.removeIndex(idx);
}
}
}
}
// also drop imported indicies for tables that will be dropped
for (Table tab: drops) {
dbTable = db.findTable(tab);
if (dbTable == null) {
continue;
}
for (Index index : tab.getIndexes()) {
idx = findIndex(dbTable, index);
if (dropIndex(index)) {
dbTable.removeIndex(idx);
} else {
_log.warn(_loc.get("drop-index", index, dbTable));
}
}
}
}
// drop the tables we calculated above // drop the tables we calculated above
dropTables(drops, db); dropTables(drops, db);