mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 12:29:36 +08:00
a177f48577
Signed-off-by: FluorineDog <guilin.gou@zilliz.com>
16 lines
332 B
Go
16 lines
332 B
Go
package reader
|
|
|
|
import (
|
|
msgPb "github.com/czs007/suvlim/pkg/master/grpc/message"
|
|
)
|
|
|
|
type IndexConfig struct {}
|
|
|
|
func buildIndex(config IndexConfig) msgPb.Status {
|
|
return msgPb.Status{ErrorCode: msgPb.ErrorCode_SUCCESS}
|
|
}
|
|
|
|
func dropIndex(fieldName string) msgPb.Status {
|
|
return msgPb.Status{ErrorCode: msgPb.ErrorCode_SUCCESS}
|
|
}
|