mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix golint error in data_codec (#10697)
Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>pull/10704/head
parent
5c0b5c42ca
commit
373a4684b9
|
@ -49,8 +49,13 @@ const (
|
|||
const maxLengthPerRowOfIndexFile = 4 * 1024 * 1024
|
||||
|
||||
type (
|
||||
UniqueID = typeutil.UniqueID
|
||||
FieldID = typeutil.UniqueID
|
||||
// UniqueID is type alias of typeutil.UniqueID
|
||||
UniqueID = typeutil.UniqueID
|
||||
|
||||
// FieldID represent the identity number of filed in collection and its type is UniqueID
|
||||
FieldID = typeutil.UniqueID
|
||||
|
||||
// Timestamp is type alias of typeutil.Timestamp
|
||||
Timestamp = typeutil.Timestamp
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue