We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 605a3b2 commit 9167ccfCopy full SHA for 9167ccf
1 file changed
go/logic/applier.go
@@ -753,8 +753,9 @@ func (this *Applier) SanitizeRowsDuringCutOver() error {
753
return insertSelectErr
754
}
755
756
- log.Infof("Sanitizing chunk of %d created rows during trigger creation",
757
- len(chunkValues))
+ log.Infof("Sanitizing chunk of created rows during trigger creation (%d/%d)",
+ int64(len(this.migrationContext.TriggerCutoverUniqueKeys))-cutIndex,
758
+ len(this.migrationContext.TriggerCutoverUniqueKeys))
759
760
err := func() error {
761
tx, err := this.db.Begin()
0 commit comments