mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 06:55:27 +08:00
16 lines
330 B
Go
16 lines
330 B
Go
package reader
|
|
|
|
import (
|
|
schema2 "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}
|
|
}
|