mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 20:39:36 +08:00
f4c643f1bd
Signed-off-by: sunby <bingyi.sun@zilliz.com>
35 lines
605 B
Go
35 lines
605 B
Go
package querynode
|
|
|
|
/*
|
|
|
|
#cgo CFLAGS: -I${SRCDIR}/../core/output/include
|
|
|
|
#cgo LDFLAGS: -L${SRCDIR}/../core/output/lib -lmilvus_segcore -Wl,-rpath=${SRCDIR}/../core/output/lib
|
|
|
|
#include "segcore/collection_c.h"
|
|
#include "segcore/segment_c.h"
|
|
|
|
*/
|
|
import "C"
|
|
|
|
type Partition struct {
|
|
partitionTag string
|
|
segments []*Segment
|
|
}
|
|
|
|
func (p *Partition) Tag() string {
|
|
return (*p).partitionTag
|
|
}
|
|
|
|
func (p *Partition) Segments() *[]*Segment {
|
|
return &(*p).segments
|
|
}
|
|
|
|
func newPartition(partitionTag string) *Partition {
|
|
var newPartition = &Partition{
|
|
partitionTag: partitionTag,
|
|
}
|
|
|
|
return newPartition
|
|
}
|