Files
congqixiaandGitHub 7311d450a0 enhance: bump Go dependencies to v3 modules (#49485)
Related to #49398

Bump Go module references from pkg/v2 and milvus-proto/go-api/v2 to
pkg/v3 and milvus-proto/go-api/v3 so the client tracks the Milvus 3.x
release line.

This prepares the repository for the upcoming 3.x.y release by aligning
imports, module dependencies, and proto API references with the new
major-version module paths.

---------

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2026-05-01 10:30:13 +08:00

18 lines
754 B
Go

package planparserv2
import "github.com/milvus-io/milvus/pkg/v3/proto/planpb"
type LogicalExprVisitor interface {
VisitExpr(expr *planpb.Expr) interface{}
VisitTermExpr(expr *planpb.TermExpr) interface{}
VisitUnaryExpr(expr *planpb.UnaryExpr) interface{}
VisitBinaryExpr(expr *planpb.BinaryExpr) interface{}
VisitCompareExpr(expr *planpb.CompareExpr) interface{}
VisitUnaryRangeExpr(expr *planpb.UnaryRangeExpr) interface{}
VisitBinaryRangeExpr(expr *planpb.BinaryRangeExpr) interface{}
VisitBinaryArithOpEvalRangeExpr(expr *planpb.BinaryArithOpEvalRangeExpr) interface{}
VisitBinaryArithExpr(expr *planpb.BinaryArithExpr) interface{}
VisitValueExpr(expr *planpb.ValueExpr) interface{}
VisitColumnExpr(expr *planpb.ColumnExpr) interface{}
}