From dacbce084b753026938c4dabd34d952def77181a Mon Sep 17 00:00:00 2001 From: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com> Date: Tue, 21 Nov 2023 20:50:41 +0200 Subject: [PATCH] Online DDL: use shorter artifact table name in vitess migrations Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com> --- go/vt/vttablet/onlineddl/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/vt/vttablet/onlineddl/executor.go b/go/vt/vttablet/onlineddl/executor.go index 771a9000435..e31aca98b32 100644 --- a/go/vt/vttablet/onlineddl/executor.go +++ b/go/vt/vttablet/onlineddl/executor.go @@ -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 }