milvus/pkg/util/indexparamcheck/flat_checker.go

14 lines
230 B
Go
Raw Normal View History

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