mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-30 23:45:28 +08:00
14 lines
297 B
Go
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}
|
|
}
|