Module datafusion_expr::expr_visitor
source · Expand description
Expression visitor
Enums
Controls how the visitor recursion should proceed.
Traits
trait for types that can be visited by
ExpressionVisitorEncode the traversal of an expression tree. When passed to
Expr::accept, ExpressionVisitor::visit is invoked
recursively on all nodes of an expression tree. See the comments
on Expr::accept for details on its use