milvus/reader/index.go
shengjh 4cf6e079bc Add etcd watcher
Signed-off-by: shengjh <1572099106@qq.com>
2020-09-11 18:55:43 +08:00

16 lines
342 B
Go

package reader
import (
schema2 "github.com/czs007/suvlim/pulsar/client-go/pb"
)
type IndexConfig struct {}
func buildIndex(config IndexConfig) schema2.Status {
return schema2.Status{ErrorCode: schema2.ErrorCode_SUCCESS}
}
func dropIndex(fieldName string) schema2.Status {
return schema2.Status{ErrorCode: schema2.ErrorCode_SUCCESS}
}