We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 605a3b2 commit 27dce9fCopy full SHA for 27dce9f
go/logic/applier.go
@@ -753,8 +753,10 @@ 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)",
758
+ int64(len(this.migrationContext.TriggerCutoverUniqueKeys)) - cutIndex,
759
+ len(this.migrationContext.TriggerCutoverUniqueKeys))
760
761
err := func() error {
762
tx, err := this.db.Begin()
0 commit comments