[skip ci]Fix const golint in data_codec (#9793)

Signed-off-by: yangxuan <xuan.yang@zilliz.com>
pull/9816/head
XuanYang-cn 2021-10-13 18:59:26 +08:00 committed by GitHub
parent 2659807826
commit 75dccad4fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -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"
)