mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 10:59:32 +08:00
1370da9498
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
16 lines
320 B
Go
16 lines
320 B
Go
package reader
|
|
|
|
import (
|
|
msgPb "github.com/czs007/suvlim/pkg/message"
|
|
)
|
|
|
|
type IndexConfig struct {}
|
|
|
|
func buildIndex(config IndexConfig) msgPb.Status {
|
|
return msgPb.Status{ErrorCode: msgPb.ErrorCode_SUCCESS}
|
|
}
|
|
|
|
func dropIndex(fieldName string) msgPb.Status {
|
|
return msgPb.Status{ErrorCode: msgPb.ErrorCode_SUCCESS}
|
|
}
|