Skip to content

Commit 959532f

Browse files
authored
Merge branch 'master' into grodowski/coding-chimp/on-retry-hook
2 parents 6d0e633 + a1e9c9d commit 959532f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

go/logic/migrator.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,9 @@ func (this *Migrator) initiateApplier() error {
13741374
return err
13751375
}
13761376
}
1377-
this.applier.WriteChangelogState(string(GhostTableMigrated))
1377+
if _, err := this.applier.WriteChangelogState(string(GhostTableMigrated)); err != nil {
1378+
return err
1379+
}
13781380
}
13791381

13801382
// ensure performance_schema.metadata_locks is available.

0 commit comments

Comments
 (0)