mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 03:48:37 +08:00
d7b2ffe5aa
issue: #34298 Signed-off-by: xianliang.li <xianliang.li@zilliz.com>
29 lines
700 B
Go
29 lines
700 B
Go
package indexparamcheck
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
|
)
|
|
|
|
// TRIEChecker checks if a TRIE index can be built.
|
|
type TRIEChecker struct {
|
|
scalarIndexChecker
|
|
}
|
|
|
|
func (c *TRIEChecker) CheckTrain(dataType schemapb.DataType, params map[string]string) error {
|
|
return c.scalarIndexChecker.CheckTrain(dataType, params)
|
|
}
|
|
|
|
func (c *TRIEChecker) CheckValidDataType(indexType IndexType, field *schemapb.FieldSchema) error {
|
|
if !typeutil.IsStringType(field.GetDataType()) {
|
|
return fmt.Errorf("TRIE are only supported on varchar field")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func newTRIEChecker() *TRIEChecker {
|
|
return &TRIEChecker{}
|
|
}
|