mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
12 lines
252 B
Go
12 lines
252 B
Go
package indexparamcheck
|
|
|
|
import "github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
|
|
type scalarIndexChecker struct {
|
|
baseChecker
|
|
}
|
|
|
|
func (c scalarIndexChecker) CheckTrain(dataType schemapb.DataType, params map[string]string) error {
|
|
return nil
|
|
}
|