Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zml1206 committed Sep 13, 2024
1 parent fc7bb99 commit 0d92f84
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 0d92f84

Please sign in to comment.