Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zml1206 committed Sep 18, 2024
1 parent 4263773 commit 17a240a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ object PushDownFilterToScan extends Rule[SparkPlan] with PredicateHelper {
val newScan = batchScan
if (pushDownFilters.size > 0) {
newScan.setPushDownFilters(pushDownFilters)
if (newScan.doValidate().ok() && false) {
if (newScan.doValidate().ok()) {
filter.withNewChildren(Seq(newScan))
} else {
filter
Expand Down

0 comments on commit 17a240a

Please sign in to comment.