[skip ci] fix fmt error in common.go (#9131)

Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
pull/9119/head
zhenshan.cao 2021-10-03 10:48:02 +08:00 committed by GitHub
parent 7d87f0368f
commit 78b7a60609
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -23,17 +23,17 @@ const (
StartOfUserFieldID = 100 StartOfUserFieldID = 100
// RowIDField is the ID of the RowID field reserved by the system // RowIDField is the ID of the RowID field reserved by the system
RowIDField = 0 RowIDField = 0
// TimeStampField is the ID of the Timestamp field reserved by the system // TimeStampField is the ID of the Timestamp field reserved by the system
TimeStampField = 1 TimeStampField = 1
// RowIDFieldName defines the name of the RowID field // RowIDFieldName defines the name of the RowID field
RowIDFieldName = "RowID" RowIDFieldName = "RowID"
// TimeStampFieldName defines the name of the Timestamp field // TimeStampFieldName defines the name of the Timestamp field
TimeStampFieldName = "Timestamp" TimeStampFieldName = "Timestamp"
// DefaultShardsNum defines the default number of shards when creating a collection // DefaultShardsNum defines the default number of shards when creating a collection
DefaultShardsNum = int32(2) DefaultShardsNum = int32(2)
) )