Skip to content

Commit

Permalink
Online DDL: use shorter artifact table name in vitess migrations
Browse files Browse the repository at this point in the history
Signed-off-by: Shlomi Noach <[email protected]>
  • Loading branch information
shlomi-noach committed Nov 21, 2023
1 parent db55e96 commit dacbce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vt/vttablet/onlineddl/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,7 @@ func (e *Executor) initVreplicationOriginalMigration(ctx context.Context, online
return v, err
}

vreplTableName := fmt.Sprintf("_%s_%s_vrepl", onlineDDL.UUID, ReadableTimestamp())
vreplTableName := fmt.Sprintf("_%s_%s_vrp", onlineDDL.UUID, ReadableTimestamp())
if err := e.updateArtifacts(ctx, onlineDDL.UUID, vreplTableName); err != nil {
return v, err
}
Expand Down

0 comments on commit dacbce0

Please sign in to comment.