Merge remote-tracking branch 'origin/attempt-instant-ddl' into attempt-instant-ddl

* origin/attempt-instant-ddl:
  Update go/logic/migrator.go
This commit is contained in:
Morgan Tocker 2022-11-15 12:06:38 -07:00
Родитель 5283b46ec2 74fb8e80b2
Коммит 0310f9f27b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -368,7 +368,7 @@ func (this *Migrator) Migrate() (err error) {
this.migrationContext.Log.Infof("Success! table %s.%s migrated instantly", sql.EscapeName(this.migrationContext.DatabaseName), sql.EscapeName(this.migrationContext.OriginalTableName))
return nil
} else {
this.migrationContext.Log.Infof("ALGORITHM=INSTANT failed, proceeding with original algorithm: %s", err)
this.migrationContext.Log.Infof("ALGORITHM=INSTANT not supported for this operation, proceeding with original algorithm: %s", err)
}
}