Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Sep 13, 2023
1 parent 075bed9 commit fd760bb
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ public Plan visitPhysicalFilter(PhysicalFilter<? extends Plan> filter, CascadesC
project.child()).withPhysicalPropertiesAndStats(properties, stats);
PhysicalPlan newChild = (PhysicalPlan) newFilter.accept(this, context);
newChild = newChild.withPhysicalPropertiesAndStats(properties, stats);
PhysicalPlan ret = ((PhysicalPlan) (project.withChildren(newChild)))
return ((PhysicalPlan) (project.withChildren(newChild)))
.withPhysicalPropertiesAndStats(properties, stats);
return ret;
}
}

0 comments on commit fd760bb

Please sign in to comment.