Struct datafusion_physical_expr::utils::ExprTreeNode
source · pub struct ExprTreeNode<T> { /* private fields */ }
Implementations§
source§impl<T> ExprTreeNode<T>
impl<T> ExprTreeNode<T>
pub fn new(expr: Arc<dyn PhysicalExpr>) -> Self
pub fn expression(&self) -> &Arc<dyn PhysicalExpr>
pub fn children(&self) -> Vec<ExprTreeNode<T>> ⓘ
Trait Implementations§
source§impl<T: Clone> Clone for ExprTreeNode<T>
impl<T: Clone> Clone for ExprTreeNode<T>
source§fn clone(&self) -> ExprTreeNode<T>
fn clone(&self) -> ExprTreeNode<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug> Debug for ExprTreeNode<T>
impl<T: Debug> Debug for ExprTreeNode<T>
source§impl<T: Clone> TreeNodeRewritable for ExprTreeNode<T>
impl<T: Clone> TreeNodeRewritable for ExprTreeNode<T>
source§fn map_children<F>(self, transform: F) -> Result<Self>where
F: FnMut(Self) -> Result<Self>,
fn map_children<F>(self, transform: F) -> Result<Self>where F: FnMut(Self) -> Result<Self>,
Apply transform
F
to the node’s children, the transform F
might have a direction(Preorder or Postorder)source§fn transform_using<R: TreeNodeRewriter<Self>>(
self,
rewriter: &mut R
) -> Result<Self>
fn transform_using<R: TreeNodeRewriter<Self>>( self, rewriter: &mut R ) -> Result<Self>
Transform the tree node using the given TreeNodeRewriter
It performs a depth first walk of an node and its children. Read more
source§fn transform<F>(self, op: &F) -> Result<Self>where
F: Fn(Self) -> Result<Option<Self>>,
fn transform<F>(self, op: &F) -> Result<Self>where F: Fn(Self) -> Result<Option<Self>>,
Convenience utils for writing optimizers rule: recursively apply the given
op
to the node tree.
When op
does not apply to a given node, it is left unchanged.
The default tree traversal direction is transform_up(Postorder Traversal).source§fn transform_down<F>(self, op: &F) -> Result<Self>where
F: Fn(Self) -> Result<Option<Self>>,
fn transform_down<F>(self, op: &F) -> Result<Self>where F: Fn(Self) -> Result<Option<Self>>,
Convenience utils for writing optimizers rule: recursively apply the given ‘op’ to the node and all of its
children(Preorder Traversal).
When the
op
does not apply to a given node, it is left unchanged.source§fn transform_up<F>(self, op: &F) -> Result<Self>where
F: Fn(Self) -> Result<Option<Self>>,
fn transform_up<F>(self, op: &F) -> Result<Self>where F: Fn(Self) -> Result<Option<Self>>,
Convenience utils for writing optimizers rule: recursively apply the given ‘op’ first to all of its
children and then itself(Postorder Traversal).
When the
op
does not apply to a given node, it is left unchanged.