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 19ab875 commit 97e18cfCopy full SHA for 97e18cf
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/Optimizer.scala
@@ -36,14 +36,13 @@ object DefaultOptimizer extends Optimizer {
36
// SubQueries are only needed for analysis and can be removed before execution.
37
Batch("Remove SubQueries", FixedPoint(100),
38
EliminateSubQueries) ::
39
- Batch("Filter Pushdown", FixedPoint(100),
+ Batch("Operator Reordering", FixedPoint(100),
40
UnionPushdown,
41
CombineFilters,
42
PushPredicateThroughProject,
43
PushPredicateThroughJoin,
44
PushPredicateThroughGenerate,
45
- ColumnPruning) ::
46
- Batch("Combine Limits", FixedPoint(100),
+ ColumnPruning,
47
CombineLimits) ::
48
Batch("ConstantFolding", FixedPoint(100),
49
NullPropagation,
0 commit comments