From 75dccad4fa50154ba0a27ccba24d393bacc8a15b Mon Sep 17 00:00:00 2001 From: XuanYang-cn Date: Wed, 13 Oct 2021 18:59:26 +0800 Subject: [PATCH] [skip ci]Fix const golint in data_codec (#9793) Signed-off-by: yangxuan --- internal/storage/data_codec.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/internal/storage/data_codec.go b/internal/storage/data_codec.go index b0fa45ec80..6a293f18b5 100644 --- a/internal/storage/data_codec.go +++ b/internal/storage/data_codec.go @@ -32,8 +32,11 @@ import ( ) const ( - Ts = "ts" - DDL = "ddl" + // Ts is blob key "ts" + Ts = "ts" + // DDL is blob key "ddl" + DDL = "ddl" + // IndexParamsKey is blob key "indexParams" IndexParamsKey = "indexParams" )