mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix const golint in data_codec (#9793)
Signed-off-by: yangxuan <xuan.yang@zilliz.com>pull/9816/head
parent
2659807826
commit
75dccad4fa
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue