Skip to content

Commit

Permalink
code fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
KKould committed Feb 28, 2024
1 parent ed3a196 commit be97d34
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/optimizer/rule/normalization/pushdown_predicates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,11 @@ impl NormalizationRule for PushPredicateThroughJoin {
if let Operator::Join(child_op) = graph.operator(child_id) {
if !matches!(
child_op.join_type,
JoinType::Inner | JoinType::LeftOuter | JoinType::LeftSemi | JoinType::LeftAnti | JoinType::RightOuter
JoinType::Inner
| JoinType::LeftOuter
| JoinType::LeftSemi
| JoinType::LeftAnti
| JoinType::RightOuter
) {
return Ok(());
}
Expand Down

0 comments on commit be97d34

Please sign in to comment.