mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
520c07ec9d
issue: https://github.com/milvus-io/milvus/issues/29048 --------- Signed-off-by: longjiquan <jiquan.long@zilliz.com>
14 lines
230 B
Go
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{}
|
|
}
|