milvus/pkg/util/indexparamcheck/flat_checker.go
Jiquan Long a98c79b6a6
Fix flat index can be created with invalid metric type (#24180)
Signed-off-by: longjiquan <jiquan.long@zilliz.com>
2023-05-18 11:07:26 +08:00

10 lines
140 B
Go

package indexparamcheck
type flatChecker struct {
floatVectorBaseChecker
}
func newFlatChecker() IndexChecker {
return &flatChecker{}
}