From f882c7725b880124265a6ea42cea425101173122 Mon Sep 17 00:00:00 2001 From: Renan Rangel Date: Fri, 28 Jun 2024 02:45:14 -0700 Subject: [PATCH] comment Signed-off-by: Renan Rangel --- go/vt/mysqlctl/mysqlshellbackupengine.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/go/vt/mysqlctl/mysqlshellbackupengine.go b/go/vt/mysqlctl/mysqlshellbackupengine.go index 17a6cc92d65..b3f30d826fe 100644 --- a/go/vt/mysqlctl/mysqlshellbackupengine.go +++ b/go/vt/mysqlctl/mysqlshellbackupengine.go @@ -123,6 +123,9 @@ func (be *MySQLShellBackupEngine) ExecuteBackup(ctx context.Context, params Back // Common base fields BackupManifest: BackupManifest{ BackupMethod: mysqlShellBackupEngineName, + // the position is empty here because we have no way of capturing it from mysqlsh + // we will capture it when doing the restore as mysqlsh can replace the GTIDs with + // what it has stored in the backup. Position: replication.Position{}, BackupTime: start.Format(time.RFC3339), FinishedTime: time.Now().UTC().Format(time.RFC3339),