mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 19:08:30 +08:00
a55f739608
Signed-off-by: SimFG <bang.fu@zilliz.com> Signed-off-by: SimFG <bang.fu@zilliz.com>
38 lines
662 B
Go
38 lines
662 B
Go
package planparserv2
|
|
|
|
import (
|
|
"github.com/milvus-io/milvus-proto/go-api/schemapb"
|
|
"github.com/milvus-io/milvus/internal/proto/planpb"
|
|
)
|
|
|
|
type ExprWithType struct {
|
|
expr *planpb.Expr
|
|
dataType schemapb.DataType
|
|
}
|
|
|
|
func getError(obj interface{}) error {
|
|
err, ok := obj.(error)
|
|
if !ok {
|
|
// obj is not an error.
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
func getExpr(obj interface{}) *ExprWithType {
|
|
n, ok := obj.(*ExprWithType)
|
|
if !ok {
|
|
// obj is not of *ExprWithType
|
|
return nil
|
|
}
|
|
return n
|
|
}
|
|
|
|
func getGenericValue(obj interface{}) *planpb.GenericValue {
|
|
expr := getExpr(obj)
|
|
if expr == nil {
|
|
return nil
|
|
}
|
|
return expr.expr.GetValueExpr().GetValue()
|
|
}
|