mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-25 23:36:01 +00:00
all analyse tests passes locally
This commit is contained in:
@@ -104,7 +104,10 @@ export class DatabaseAnalyser {
|
|||||||
if (typeField == objectTypeField) return [pureName];
|
if (typeField == objectTypeField) return [pureName];
|
||||||
}
|
}
|
||||||
if (this.modifications) {
|
if (this.modifications) {
|
||||||
return this.modifications.filter(x => x.objectTypeField == objectTypeField).map(x => x.newName.pureName);
|
return this.modifications
|
||||||
|
.filter(x => x.objectTypeField == objectTypeField)
|
||||||
|
.filter(x => x.newName)
|
||||||
|
.map(x => x.newName.pureName);
|
||||||
}
|
}
|
||||||
return allPureNames;
|
return allPureNames;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user