try to comment out earlier patch

This commit is contained in:
Jan Prochazka
2025-12-09 10:46:25 +01:00
parent 98f5bb4124
commit 955ca99cf3

View File

@@ -337,13 +337,14 @@ export class AlterPlan {
return opRes;
}),
op,
].filter(op => {
// filter duplicated drops
const existingDrop = this.operations.find(
o => o.operationType == 'dropConstraint' && o.oldObject === op['oldObject']
);
return existingDrop == null;
});
];
// .filter(op => {
// // filter duplicated drops
// const existingDrop = this.operations.find(
// o => o.operationType == 'dropConstraint' && o.oldObject === op['oldObject']
// );
// return existingDrop == null;
// })
return res;
}