mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
Co-authored-by: kejiang ke.jiang@zilliz.com Co-authored-by: yun.zhang yun.zhang@zilliz.com Signed-off-by: yun.zhang <yun.zhang@zilliz.com>
14 lines
330 B
Go
14 lines
330 B
Go
package model
|
|
|
|
import "github.com/milvus-io/milvus/internal/proto/commonpb"
|
|
|
|
type Index struct {
|
|
CollectionID int64
|
|
FieldID int64
|
|
IndexID int64
|
|
IndexName string
|
|
IndexParams []*commonpb.KeyValuePair
|
|
SegmentIndexes map[int64]SegmentIndex //segmentID -> segmentIndex
|
|
Extra map[string]string
|
|
}
|