Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
ExprRewriter in datafusion::logical_plan - Rust
[go: Go Back, main page]

Trait datafusion::logical_plan::ExprRewriter[][src]

pub trait ExprRewriter: Sized {
    fn mutate(&mut self, expr: Expr) -> Result<Expr>;

    fn pre_visit(&mut self, _expr: &Expr) -> Result<bool> { ... }
}
Expand description

Trait for potentially recursively rewriting an Expr expression tree. When passed to Expr::rewrite, ExpressionVisitor::mutate is invoked recursively on all nodes of an expression tree. See the comments on Expr::rewrite for details on its use

Required methods

Invoked after all children of expr have been mutated and returns a potentially modified expr.

Provided methods

Invoked before any children of expr are rewritten / visited. Default implementation returns Ok(true)

Implementors