milvus/pkg/util/indexparamcheck/flat_checker.go
Jiquan Long 520c07ec9d
fix: autoindex panic with flat index type (#29071)
issue: https://github.com/milvus-io/milvus/issues/29048

---------

Signed-off-by: longjiquan <jiquan.long@zilliz.com>
2023-12-12 22:08:46 +08:00

14 lines
230 B
Go

package indexparamcheck
type flatChecker struct {
floatVectorBaseChecker
}
func (c flatChecker) StaticCheck(m map[string]string) error {
return c.staticCheck(m)
}
func newFlatChecker() IndexChecker {
return &flatChecker{}
}