mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
36c8362b41
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
16 lines
348 B
Go
16 lines
348 B
Go
package reader
|
|
|
|
import (
|
|
schema2 "github.com/czs007/suvlim/pulsar/client-go/schema"
|
|
)
|
|
|
|
type IndexConfig struct {}
|
|
|
|
func buildIndex(config IndexConfig) schema2.Status {
|
|
return schema2.Status{Error_code: schema2.ErrorCode_SUCCESS}
|
|
}
|
|
|
|
func dropIndex(fieldName string) schema2.Status {
|
|
return schema2.Status{Error_code: schema2.ErrorCode_SUCCESS}
|
|
}
|