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
ExprRewritable in datafusion::logical_plan::expr_rewriter - Rust
[go: Go Back, main page]

pub trait ExprRewritable {
    fn rewrite<R>(self, rewriter: &mut R) -> Result<Self, DataFusionError>
    where
        R: ExprRewriter<Self>
; }
Expand description

a trait for marking types that are rewritable by ExprRewriter

Required Methods

rewrite the expression tree using the given ExprRewriter

Implementors