We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 801ebab commit 9059f30Copy full SHA for 9059f30
1 file changed
go/logic/migrator.go
@@ -369,6 +369,9 @@ func (this *Migrator) Migrate() (err error) {
369
} else {
370
this.migrationContext.Log.Infof("Attempting to execute alter with ALGORITHM=INSTANT")
371
if err := this.applier.AttemptInstantDDL(); err == nil {
372
+ if err := this.finalCleanup(); err != nil {
373
+ return nil
374
+ }
375
if err := this.hooksExecutor.onSuccess(); err != nil {
376
return err
377
}
0 commit comments