mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
29ae1229b6
Signed-off-by: longjiquan <jiquan.long@zilliz.com>
18 lines
378 B
Go
18 lines
378 B
Go
package indexparamcheck
|
|
|
|
type binFlatChecker struct {
|
|
binaryVectorBaseChecker
|
|
}
|
|
|
|
func (c binFlatChecker) CheckTrain(params map[string]string) error {
|
|
return c.binaryVectorBaseChecker.CheckTrain(params)
|
|
}
|
|
|
|
func (c binFlatChecker) StaticCheck(params map[string]string) error {
|
|
return c.staticCheck(params)
|
|
}
|
|
|
|
func newBinFlatChecker() IndexChecker {
|
|
return &binFlatChecker{}
|
|
}
|