Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[skip ci]Fix golint error in data_codec #10697

Merged
merged 1 commit into from
Oct 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[skip ci]Fix golint error in data_codec
Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
  • Loading branch information
czs007 committed Oct 26, 2021
commit 524e0d7654803adef28aeb5cbae9b8f81637744f
9 changes: 7 additions & 2 deletions internal/storage/data_codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down