noop more verbose

This commit is contained in:
Shlomi Noach 2016-06-27 08:49:26 +02:00
parent e0de69b028
commit 4f299f320e

View File

@ -1190,6 +1190,11 @@ func (this *Migrator) finalCleanup() error {
if err := this.retryOperation(this.applier.DropOldTable); err != nil { if err := this.retryOperation(this.applier.DropOldTable); err != nil {
return err return err
} }
} else {
if !this.migrationContext.Noop {
log.Infof("Am not dropping old table because I want this operation to be as live as possible. If you insist I should do it, please add `--ok-to-drop-table` next time. But I prefer you do not. To drop the old table, issue:")
log.Infof("-- drop table %s.%s", sql.EscapeName(this.migrationContext.DatabaseName), sql.EscapeName(this.migrationContext.GetOldTableName()))
}
} }
if this.migrationContext.Noop { if this.migrationContext.Noop {
if err := this.retryOperation(this.applier.DropGhostTable); err != nil { if err := this.retryOperation(this.applier.DropGhostTable); err != nil {