mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 17:48:29 +08:00
9 lines
269 B
Go
9 lines
269 B
Go
package indexparamcheck
|
|
|
|
import "github.com/milvus-io/milvus/api/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
|
|
}
|