Skip to content

Commit 97e18cf

Browse files
committed
Update Optimizer.scala
1 parent 19ab875 commit 97e18cf

File tree

1 file changed

+2
-3
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer

1 file changed

+2
-3
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/Optimizer.scala

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,13 @@ object DefaultOptimizer extends Optimizer {
3636
// SubQueries are only needed for analysis and can be removed before execution.
3737
Batch("Remove SubQueries", FixedPoint(100),
3838
EliminateSubQueries) ::
39-
Batch("Filter Pushdown", FixedPoint(100),
39+
Batch("Operator Reordering", FixedPoint(100),
4040
UnionPushdown,
4141
CombineFilters,
4242
PushPredicateThroughProject,
4343
PushPredicateThroughJoin,
4444
PushPredicateThroughGenerate,
45-
ColumnPruning) ::
46-
Batch("Combine Limits", FixedPoint(100),
45+
ColumnPruning,
4746
CombineLimits) ::
4847
Batch("ConstantFolding", FixedPoint(100),
4948
NullPropagation,

0 commit comments

Comments
 (0)