MCPcopy Create free account
hub / github.com/apache/datafusion / transform_with_subqueries

Method transform_with_subqueries

datafusion/expr/src/logical_plan/tree_node.rs:737–742  ·  view source on GitHub ↗

Similarly to [`Self::transform`], rewrites this node and its inputs using `f`, including subqueries that may appear in expressions such as `IN (SELECT ...)`.

(
        self,
        f: F,
    )

Source from the content-addressed store, hash-verified

735 /// including subqueries that may appear in expressions such as `IN (SELECT
736 /// ...)`.
737 pub fn transform_with_subqueries<F: FnMut(Self) -> Result<Transformed<Self>>>(
738 self,
739 f: F,
740 ) -> Result<Transformed<Self>> {
741 self.transform_up_with_subqueries(f)
742 }
743
744 /// Similarly to [`Self::transform_down`], rewrites this node and its inputs using `f`,
745 /// including subqueries that may appear in expressions such as `IN (SELECT

Callers 1

Calls 1

Tested by

no test coverage detected