Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
move SetOperationPushDown below PushPredicateThroughProject
  • Loading branch information
gatorsmile committed Mar 17, 2016
commit b853e01a281c575ccbf5e312840b749fd479fe69
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ abstract class Optimizer extends RuleExecutor[LogicalPlan] {
RemoveLiteralFromGroupExpressions) ::
Batch("Operator Optimizations", FixedPoint(100),
// Operator push down
SetOperationPushDown,
SamplePushDown,
ReorderJoin,
OuterJoinElimination,
PushPredicateThroughProject,
SetOperationPushDown,
PushPredicateThroughJoin,
PushPredicateThroughGenerate,
PushPredicateThroughAggregate,
Expand Down