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