We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69be17b commit f001b27Copy full SHA for f001b27
sql/core/src/main/scala/org/apache/spark/sql/execution/SparkOptimizer.scala
@@ -44,8 +44,9 @@ class SparkOptimizer(
44
Batch("PartitionPruning", Once,
45
PartitionPruning,
46
OptimizeSubqueries) :+
47
- Batch("Pushdown and infer Filters from PartitionPruning", fixedPoint,
48
- PushDownPredicates,
+ Batch("Pushdown Filters from PartitionPruning", fixedPoint,
+ PushDownPredicates) :+
49
+ Batch("Infer Filters from DynamicPruning", Once,
50
InferFiltersFromConstraints) :+
51
Batch("Cleanup filters that cannot be pushed down", Once,
52
CleanupDynamicPruningFilters,
0 commit comments