Skip to content

Commit

Permalink
(nereids) fix outerjoin assoc rule bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongjian.xzj authored and dataroaring committed Jul 15, 2024
1 parent d728555 commit 98c3e35
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public class OuterJoinAssocProject extends OneExplorationRuleFactory {
// Pair<bottomJoin, topJoin>
// newBottomJoin Type = topJoin Type, newTopJoin Type = bottomJoin Type
public static Set<Pair<JoinType, JoinType>> VALID_TYPE_PAIR_SET = ImmutableSet.of(
Pair.of(JoinType.LEFT_OUTER_JOIN, JoinType.INNER_JOIN),
Pair.of(JoinType.INNER_JOIN, JoinType.LEFT_OUTER_JOIN),
Pair.of(JoinType.LEFT_OUTER_JOIN, JoinType.LEFT_OUTER_JOIN));

Expand Down

0 comments on commit 98c3e35

Please sign in to comment.