[improvement](nereids) support extract from disjunction in join on condition#38479
Merged
morrySnow merged 5 commits intoapache:masterfrom Aug 16, 2024
Conversation
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 41589 ms |
TPC-DS: Total hot run time: 169008 ms |
ClickBench: Total hot run time: 30.09 s |
5658a1f to
eaa6cef
Compare
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 41772 ms |
TPC-DS: Total hot run time: 169850 ms |
ClickBench: Total hot run time: 30.34 s |
Contributor
Author
|
run external |
Contributor
Author
|
run p1 |
Contributor
Author
|
run p0 |
924060929
previously approved these changes
Aug 2, 2024
Contributor
|
PR approved by at least one committer and no changes requested. |
Contributor
|
PR approved by anyone and no changes requested. |
2f861fc to
c78b599
Compare
Contributor
Author
|
run buildall |
Contributor
|
clang-tidy review says "All clean, LGTM! 👍" |
c78b599 to
a788b54
Compare
morrySnow
reviewed
Aug 12, 2024
...java/org/apache/doris/nereids/rules/rewrite/ExtractSingleTableExpressionFromDisjunction.java
Show resolved
Hide resolved
a788b54 to
2d526bd
Compare
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 40157 ms |
2d526bd to
d4da9b8
Compare
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 37972 ms |
TPC-DS: Total hot run time: 189667 ms |
ClickBench: Total hot run time: 31.09 s |
Contributor
Author
|
run cloud_p0 |
morrySnow
approved these changes
Aug 15, 2024
Contributor
|
PR approved by at least one committer and no changes requested. |
xzj7019
approved these changes
Aug 15, 2024
dataroaring
pushed a commit
that referenced
this pull request
Aug 17, 2024
…ndition (#38479) select * from test_like1 t1 inner join test_like2 t2 on t1.a=t2.a and (t2.a=10 && t1.a=8 || t1.a=9); support extract t1.a in (8,9) from t1.a=t2.a and (t2.a=10 && t1.a=8 || t1.a=9), and push to scan.
feiniaofeiafei
added a commit
to feiniaofeiafei/doris
that referenced
this pull request
Nov 12, 2024
…ndition (apache#38479) select * from test_like1 t1 inner join test_like2 t2 on t1.a=t2.a and (t2.a=10 && t1.a=8 || t1.a=9); support extract t1.a in (8,9) from t1.a=t2.a and (t2.a=10 && t1.a=8 || t1.a=9), and push to scan.
Closed
GoGoWen
pushed a commit
to GoGoWen/incubator-doris
that referenced
this pull request
Sep 26, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
support extract t1.a in (8,9) from t1.a=t2.a and (t2.a=10 && t1.a=8 || t1.a=9), and push to scan.