From 6055b2a207dad38daf5a98b81783ce4026ac1e3e Mon Sep 17 00:00:00 2001 From: Vitaliy Mogilevskiy Date: Mon, 7 Aug 2023 10:23:06 -0700 Subject: [PATCH] removes backticks --- go/vt/mysqlctl/reparent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/vt/mysqlctl/reparent.go b/go/vt/mysqlctl/reparent.go index d6c93e39a1f..71625f5b066 100644 --- a/go/vt/mysqlctl/reparent.go +++ b/go/vt/mysqlctl/reparent.go @@ -56,7 +56,7 @@ ENGINE=InnoDB`, mysql.MaximumPositionSize)} // This is to support in-place upgrades from 13.0.x to 14.0.x func AlterReparentJournal() []string { return []string{ - "`ALTER TABLE _vt.reparent_journal CHANGE COLUMN primary_alias master_alias VARBINARY(32) NOT NULL`", + "ALTER TABLE _vt.reparent_journal CHANGE COLUMN primary_alias master_alias VARBINARY(32) NOT NULL", } }