2023-03-24 17:09:58 +08:00
|
|
|
package proxy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/schemapb"
|
2023-04-06 19:14:32 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/util/merr"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
2023-03-24 17:09:58 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetMaxLength get max length of field. Maybe also helpful outside.
|
|
|
|
func GetMaxLength(field *schemapb.FieldSchema) (int64, error) {
|
|
|
|
if !typeutil.IsStringType(field.GetDataType()) {
|
|
|
|
msg := fmt.Sprintf("%s is not of string type", field.GetDataType())
|
|
|
|
return 0, merr.WrapErrParameterInvalid(schemapb.DataType_VarChar, field.GetDataType(), msg)
|
|
|
|
}
|
|
|
|
h := typeutil.NewKvPairs(append(field.GetIndexParams(), field.GetTypeParams()...))
|
|
|
|
maxLengthStr, err := h.Get("max_length")
|
|
|
|
if err != nil {
|
|
|
|
msg := "max length not found"
|
|
|
|
return 0, merr.WrapErrParameterInvalid("max length key in type parameters", "not found", msg)
|
|
|
|
}
|
|
|
|
maxLength, err := strconv.Atoi(maxLengthStr)
|
|
|
|
if err != nil {
|
|
|
|
msg := fmt.Sprintf("invalid max length: %s", maxLengthStr)
|
|
|
|
return 0, merr.WrapErrParameterInvalid("value of max length should be of int", maxLengthStr, msg)
|
|
|
|
}
|
|
|
|
return int64(maxLength), nil
|
|
|
|
}
|