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 (
|
const (
|
||||||
Ts = "ts"
|
// Ts is blob key "ts"
|
||||||
DDL = "ddl"
|
Ts = "ts"
|
||||||
|
// DDL is blob key "ddl"
|
||||||
|
DDL = "ddl"
|
||||||
|
// IndexParamsKey is blob key "indexParams"
|
||||||
IndexParamsKey = "indexParams"
|
IndexParamsKey = "indexParams"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue