milvus/reader/index.go
bigsheeper d69c925ba5 Implement the interfaces about insertion, deletion and search
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2020-08-28 17:29:26 +08:00

14 lines
301 B
Go

package reader
import "suvlim/pulsar/schema"
type IndexConfig struct {}
func buildIndex(config IndexConfig) schema.Status {
return schema.Status{Error_code: schema.ErrorCode_SUCCESS}
}
func dropIndex(fieldName string) schema.Status {
return schema.Status{Error_code: schema.ErrorCode_SUCCESS}
}