-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[feat](expression rewrite) simplify expression equals true/false #56899
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
[feat](expression rewrite) simplify expression equals true/false #56899
Conversation
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
|
run buildall |
1 similar comment
|
run buildall |
FE UT Coverage ReportIncrement line coverage |
TPC-DS: Total hot run time: 190990 ms |
ClickBench: Total hot run time: 30.29 s |
FE Regression Coverage ReportIncrement line coverage |
a48c2d0 to
4a07b96
Compare
|
run buildall |
TPC-DS: Total hot run time: 187990 ms |
ClickBench: Total hot run time: 30.22 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
FE UT Coverage ReportIncrement line coverage |
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
FE Regression Coverage ReportIncrement line coverage |
4a07b96 to
ad27d9e
Compare
|
run buildall |
|
run buildall |
ClickBench: Total hot run time: 29.07 s |
FE UT Coverage ReportIncrement line coverage |
|
run buildall |
TPC-DS: Total hot run time: 190206 ms |
ClickBench: Total hot run time: 27.6 s |
FE UT Coverage ReportIncrement line coverage |
|
run feut |
FE UT Coverage ReportIncrement line coverage |
FE Regression Coverage ReportIncrement line coverage |
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
…che#56899) simplify expression equals with true / false literal. for example: 1. `a > 1 = true` => `a > 1`; 2. `a > 1 = false` => `not(a > 1)`; 3. `a > 1 <=> true` => `a > 1 and a is not null`;
…che#56899) simplify expression equals with true / false literal.
…che#56899) simplify expression equals with true / false literal.
…che#56899) simplify expression equals with true / false literal.
…che#56899) simplify expression equals with true / false literal.
…che#56899) simplify expression equals with true / false literal.
…che#56899) simplify expression equals with true / false literal.
…che#56899) simplify expression equals with true / false literal.
simplify expression equals with true / false literal.
for example:
a > 1 = true=>a > 1;a > 1 = false=>not(a > 1);a > 1 <=> true=>a > 1 and a is not null;Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)