mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 20:39:36 +08:00
d896e3119e
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package proxy
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/milvus-io/milvus/internal/proto/schemapb"
|
|
)
|
|
|
|
// TODO(dragondriver): add more common error type
|
|
|
|
func errInvalidNumRows(numRows uint32) error {
|
|
return fmt.Errorf("invalid num_rows: %d", numRows)
|
|
}
|
|
|
|
func errNumRowsLessThanOrEqualToZero(numRows uint32) error {
|
|
return fmt.Errorf("num_rows(%d) should be greater than 0", numRows)
|
|
}
|
|
|
|
func errNumRowsOfFieldDataMismatchPassed(idx int, fieldNumRows, passedNumRows uint32) error {
|
|
return fmt.Errorf("the num_rows(%d) of %dth field is not equal to passed NumRows(%d)", fieldNumRows, idx, passedNumRows)
|
|
}
|
|
|
|
var errEmptyFieldData = errors.New("empty field data")
|
|
|
|
func errFieldsLessThanNeeded(fieldsNum, needed int) error {
|
|
return fmt.Errorf("the length(%d) of passed fields is less than needed(%d)", fieldsNum, needed)
|
|
}
|
|
|
|
func errUnsupportedDataType(dType schemapb.DataType) error {
|
|
return fmt.Errorf("%v is not supported now", dType)
|
|
}
|
|
|
|
func errUnsupportedDType(dType string) error {
|
|
return fmt.Errorf("%s is not supported now", dType)
|
|
}
|
|
|
|
func errInvalidDim(dim int) error {
|
|
return fmt.Errorf("invalid dim: %d", dim)
|
|
}
|
|
|
|
func errDimLessThanOrEqualToZero(dim int) error {
|
|
return fmt.Errorf("dim(%d) should be greater than 0", dim)
|
|
}
|
|
|
|
func errDimShouldDivide8(dim int) error {
|
|
return fmt.Errorf("dim(%d) should divide 8", dim)
|
|
}
|