2020-09-18 01:53:18 +08:00
|
|
|
package reader
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
2020-10-23 18:01:24 +08:00
|
|
|
#cgo CFLAGS: -I../core/output/include
|
2020-09-18 01:53:18 +08:00
|
|
|
|
2020-10-23 18:01:24 +08:00
|
|
|
#cgo LDFLAGS: -L../core/output/lib -lmilvus_dog_segment -Wl,-rpath=../core/output/lib
|
2020-09-18 01:53:18 +08:00
|
|
|
|
|
|
|
#include "collection_c.h"
|
|
|
|
#include "partition_c.h"
|
|
|
|
#include "segment_c.h"
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
import (
|
2020-10-24 18:04:57 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
2020-09-18 01:53:18 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type IndexConfig struct{}
|
|
|
|
|
2020-10-24 18:04:57 +08:00
|
|
|
func (s *Segment) buildIndex(collection* Collection) commonpb.Status {
|
2020-09-21 18:16:06 +08:00
|
|
|
/*
|
2020-10-24 18:04:57 +08:00
|
|
|
int
|
|
|
|
BuildIndex(CCollection c_collection, CSegmentBase c_segment);
|
2020-09-18 01:53:18 +08:00
|
|
|
*/
|
2020-09-21 18:16:06 +08:00
|
|
|
var status = C.BuildIndex(collection.CollectionPtr, s.SegmentPtr)
|
2020-09-18 01:53:18 +08:00
|
|
|
if status != 0 {
|
2020-10-24 18:04:57 +08:00
|
|
|
return commonpb.Status{ErrorCode: commonpb.ErrorCode_BUILD_INDEX_ERROR}
|
2020-09-18 01:53:18 +08:00
|
|
|
}
|
2020-10-24 18:04:57 +08:00
|
|
|
return commonpb.Status{ErrorCode: commonpb.ErrorCode_SUCCESS}
|
2020-09-18 01:53:18 +08:00
|
|
|
}
|
|
|
|
|
2020-10-24 18:04:57 +08:00
|
|
|
func (s *Segment) dropIndex(fieldName string) commonpb.Status {
|
2020-09-18 01:53:18 +08:00
|
|
|
// WARN: Not support yet
|
|
|
|
|
2020-10-24 18:04:57 +08:00
|
|
|
return commonpb.Status{ErrorCode: commonpb.ErrorCode_SUCCESS}
|
2020-09-18 01:53:18 +08:00
|
|
|
}
|
2020-10-24 10:45:57 +08:00
|
|
|
|
2020-10-24 18:04:57 +08:00
|
|
|
|
2020-10-24 10:45:57 +08:00
|
|
|
func (node *QueryNode) UpdateIndexes(collection *Collection, indexConfig *string) {
|
|
|
|
/*
|
|
|
|
void
|
|
|
|
UpdateIndexes(CCollection c_collection, const char *index_string);
|
|
|
|
*/
|
|
|
|
cCollectionPtr := collection.CollectionPtr
|
|
|
|
cIndexConfig := C.CString(*indexConfig)
|
|
|
|
C.UpdateIndexes(cCollectionPtr, cIndexConfig)
|
|
|
|
}
|