mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
9 lines
281 B
Go
9 lines
281 B
Go
package indexparamcheck
|
|
|
|
import "github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
|
|
// TODO: check index parameters according to the index type & data type.
|
|
func CheckIndexValid(dType schemapb.DataType, indexType IndexType, indexParams map[string]string) error {
|
|
return nil
|
|
}
|