Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ abstract class Optimizer(sessionCatalog: SessionCatalog)

override protected val blacklistedOnceBatches: Set[String] =
Set("Pullup Correlated Expressions",
"Join Reorder",
"Extract Python UDFs"
)

Expand Down Expand Up @@ -168,7 +167,7 @@ abstract class Optimizer(sessionCatalog: SessionCatalog)
RemoveLiteralFromGroupExpressions,
RemoveRepetitionFromGroupExpressions) :: Nil ++
operatorOptimizationBatch) :+
Batch("Join Reorder", Once,
Batch("Join Reorder", FixedPoint(1),
CostBasedJoinReorder) :+
Batch("Remove Redundant Sorts", Once,
RemoveRedundantSorts) :+
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class JoinReorderSuite extends PlanTest with StatsEstimationTestBase {
PushPredicateThroughJoin,
ColumnPruning,
CollapseProject) ::
Batch("Join Reorder", Once,
Batch("Join Reorder", FixedPoint(1),
CostBasedJoinReorder) :: Nil
}

Expand Down