mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
d7f38a803d
Signed-off-by: SimFG <bang.fu@zilliz.com> Signed-off-by: SimFG <bang.fu@zilliz.com>
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
|
|
}
|