milvus/reader/index.go
bigsheeper 6d777b7518 Init reader component
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2020-08-25 15:38:35 +08:00

14 lines
297 B
Go

package reader
import "../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}
}