From b4c28ff3b97b2c7d9eda3dccb3aa323a27b3da77 Mon Sep 17 00:00:00 2001 From: Will DeVries Date: Thu, 7 Nov 2024 23:17:26 -0800 Subject: [PATCH] Fix type in description of comment for WR_VER field of HIST_SNAPSHOT. --- pkg/domain/repository/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/domain/repository/worker.go b/pkg/domain/repository/worker.go index 0306c66747327..84da3674e4146 100644 --- a/pkg/domain/repository/worker.go +++ b/pkg/domain/repository/worker.go @@ -71,7 +71,7 @@ var workloadTables = []repositoryTable{ BEGIN_TIME DATETIME NOT NULL COMMENT 'Datetime that TiDB begins taking this snapshot.', END_TIME DATETIME NULL COMMENT 'Datetime that TiDB finish taking this snapshot.', DB_VER JSON NULL COMMENT 'Versions of TiDB, TiKV, PD at the moment', - WR_VER int unsigned NULL COMMENT 'Version to identifiy the compatibility of workload schema between releases.', + WR_VER int unsigned NULL COMMENT 'Version to identify the compatibility of workload schema between releases.', SOURCE VARCHAR(20) NULL COMMENT 'The program that initializes the snaphost. ', ERROR TEXT DEFAULT NULL COMMENT 'extra messages are written if anything happens to block that snapshots.')`, WorkloadSchema, histSnapshotsTable), "",