This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 2a102de742c (nereids) fix outerjoin assoc rule bug (#37769)
2a102de742c is described below
commit 2a102de742c8c9b800f60bd7df9bc26ff83f35c6
Author: Yongqiang YANG <[email protected]>
AuthorDate: Mon Jul 15 12:16:02 2024 +0800
(nereids) fix outerjoin assoc rule bug (#37769)
## Proposed changes
pick #37762
Co-authored-by: zhongjian.xzj
<[email protected]>
---
.../doris/nereids/rules/exploration/join/OuterJoinAssocProject.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/join/OuterJoinAssocProject.java
b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/join/OuterJoinAssocProject.java
index 5113db18984..12d2560a364 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/join/OuterJoinAssocProject.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/join/OuterJoinAssocProject.java
@@ -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));
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]