mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
14 lines
319 B
Go
14 lines
319 B
Go
package reader
|
|
|
|
import "github.com/czs007/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}
|
|
}
|