mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
26f06dd732
Signed-off-by: SimFG <bang.fu@zilliz.com>
33 lines
793 B
Go
33 lines
793 B
Go
package indexparamcheck
|
|
|
|
import (
|
|
"github.com/cockroachdb/errors"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
)
|
|
|
|
type baseChecker struct{}
|
|
|
|
func (c baseChecker) CheckTrain(params map[string]string) error {
|
|
if !CheckIntByRange(params, DIM, DefaultMinDim, DefaultMaxDim) {
|
|
return errOutOfRange(DIM, DefaultMinDim, DefaultMaxDim)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// CheckValidDataType check whether the field data type is supported for the index type
|
|
func (c baseChecker) CheckValidDataType(dType schemapb.DataType) error {
|
|
return nil
|
|
}
|
|
|
|
func (c baseChecker) SetDefaultMetricTypeIfNotExist(m map[string]string) {}
|
|
|
|
func (c baseChecker) StaticCheck(params map[string]string) error {
|
|
return errors.New("unsupported index type")
|
|
}
|
|
|
|
func newBaseChecker() IndexChecker {
|
|
return &baseChecker{}
|
|
}
|