We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83d194e commit 482546bCopy full SHA for 482546b
datafusion/common/src/tree_node.rs
@@ -745,16 +745,6 @@ impl<T> Transformed<T> {
745
Ok(self)
746
}
747
748
- pub fn on_transform_children(mut self) -> Transformed<T> {
749
- self.tnr = match self.tnr {
750
- TreeNodeRecursion::Continue => TreeNodeRecursion::Jump,
751
- TreeNodeRecursion::Jump => TreeNodeRecursion::Continue,
752
- TreeNodeRecursion::Stop => TreeNodeRecursion::Stop,
753
- };
754
-
755
- self
756
- }
757
758
/// Maps the [`Transformed`] object to the result of the given `f` depending on the
759
/// current [`TreeNodeRecursion`] value and the fact that `f` is changing the current
760
/// node's sibling.
0 commit comments