mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
475d36a2c9
Signed-off-by: godchen <qingxiang.chen@zilliz.com>
14 lines
192 B
Go
14 lines
192 B
Go
package master
|
|
|
|
// system filed id:
|
|
// 0: unique row id
|
|
// 1: timestamp
|
|
// 100: first user field id
|
|
// 101: second user field id
|
|
// 102: ...
|
|
|
|
const (
|
|
RowIDField = 0
|
|
TimeStampField = 1
|
|
)
|