-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
[improvement](nereids) support extract from disjunction in join on condition #38479
[improvement](nereids) support extract from disjunction in join on condition #38479
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
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
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
|
run external |
run p1 |
run p0 |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
2f861fc
to
c78b599
Compare
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
c78b599
to
a788b54
Compare
...java/org/apache/doris/nereids/rules/rewrite/ExtractSingleTableExpressionFromDisjunction.java
Show resolved
Hide resolved
a788b54
to
2d526bd
Compare
run buildall |
TPC-H: Total hot run time: 40157 ms
|
2d526bd
to
d4da9b8
Compare
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
|
run cloud_p0 |
PR approved by at least one committer and no changes requested. |
…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.
…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.
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.