File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -38,21 +38,20 @@ object DefaultOptimizer extends Optimizer {
38
38
EliminateSubQueries ) ::
39
39
Batch (" Distinct" , FixedPoint (100 ),
40
40
ReplaceDistinctWithAggregate ) ::
41
- Batch (" Operator Reordering " , FixedPoint (100 ),
41
+ Batch (" Operator Optimizations " , FixedPoint (100 ),
42
42
UnionPushdown ,
43
43
CombineFilters ,
44
44
PushPredicateThroughProject ,
45
- PushPredicateThroughJoin ,
46
45
PushPredicateThroughGenerate ,
47
46
ColumnPruning ,
48
47
ProjectCollapsing ,
49
- CombineLimits ) ::
50
- Batch (" ConstantFolding" , FixedPoint (100 ),
48
+ CombineLimits ,
51
49
NullPropagation ,
52
50
OptimizeIn ,
53
51
ConstantFolding ,
54
52
LikeSimplification ,
55
53
BooleanSimplification ,
54
+ PushPredicateThroughJoin ,
56
55
SimplifyFilters ,
57
56
SimplifyCasts ,
58
57
SimplifyCaseConversionExpressions ) ::
You can’t perform that action at this time.
0 commit comments