We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
LogicalPlan::apply_subqueries
1 parent 57b2656 commit ff2d202Copy full SHA for ff2d202
datafusion/expr/src/logical_plan/plan.rs
@@ -1461,7 +1461,7 @@ impl LogicalPlan {
1461
1462
/// Calls `f` on all subqueries referenced in expressions of the current
1463
/// `LogicalPlan` node.
1464
- fn apply_subqueries<F: FnMut(&Self) -> Result<TreeNodeRecursion>>(
+ pub fn apply_subqueries<F: FnMut(&Self) -> Result<TreeNodeRecursion>>(
1465
&self,
1466
mut f: F,
1467
) -> Result<TreeNodeRecursion> {
@@ -1484,7 +1484,7 @@ impl LogicalPlan {
1484
/// using `f`.
1485
///
1486
/// Returns the current node.
1487
- fn map_subqueries<F: FnMut(Self) -> Result<Transformed<Self>>>(
+ pub fn map_subqueries<F: FnMut(Self) -> Result<Transformed<Self>>>(
1488
self,
1489
1490
) -> Result<Transformed<Self>> {
0 commit comments