File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
datafusion/expr/src/logical_plan Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1461,7 +1461,7 @@ impl LogicalPlan {
1461
1461
1462
1462
/// Calls `f` on all subqueries referenced in expressions of the current
1463
1463
/// `LogicalPlan` node.
1464
- fn apply_subqueries < F : FnMut ( & Self ) -> Result < TreeNodeRecursion > > (
1464
+ pub fn apply_subqueries < F : FnMut ( & Self ) -> Result < TreeNodeRecursion > > (
1465
1465
& self ,
1466
1466
mut f : F ,
1467
1467
) -> Result < TreeNodeRecursion > {
@@ -1484,7 +1484,7 @@ impl LogicalPlan {
1484
1484
/// using `f`.
1485
1485
///
1486
1486
/// Returns the current node.
1487
- fn map_subqueries < F : FnMut ( Self ) -> Result < Transformed < Self > > > (
1487
+ pub fn map_subqueries < F : FnMut ( Self ) -> Result < Transformed < Self > > > (
1488
1488
self ,
1489
1489
mut f : F ,
1490
1490
) -> Result < Transformed < Self > > {
You can’t perform that action at this time.
0 commit comments