Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix exploding Delim Joins #9564

Merged
merged 4 commits into from
Nov 6, 2023
Merged
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
Next Next commit
remove unused code
  • Loading branch information
Tmonster committed Nov 6, 2023
commit 5b7cbf37f4e1524c699766396bdec3c65cf3385f
4 changes: 0 additions & 4 deletions src/optimizer/join_order/relation_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,6 @@ bool RelationManager::ExtractJoinRelations(LogicalOperator &input_op,
// Adding relations to the current join order optimizer
bool can_reorder_left = ExtractJoinRelations(*op->children[0], filter_operators, op);
bool can_reorder_right = ExtractJoinRelations(*op->children[1], filter_operators, op);
if (!can_reorder_right) {
// optimize left
// return false;
}
return can_reorder_left && can_reorder_right;
}
case LogicalOperatorType::LOGICAL_DUMMY_SCAN: {
Expand Down