milvus/internal/util/indexparamcheck/scalar_index_checker.go
Jiquan Long f8d9bc919d
Unify interface of vector index & scalar index. (#15959)
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
2022-03-21 14:23:24 +08:00

9 lines
280 B
Go

package indexparamcheck
import "github.com/milvus-io/milvus/internal/proto/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
}