mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 01:26: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 (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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user