-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[fix](Nereids) simplify range result wrong when reference is nullable #41356
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
Conversation
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
|
run buildall |
8583579 to
366e516
Compare
|
run buildall |
366e516 to
e0fcbf5
Compare
|
run buildall |
e0fcbf5 to
5dfad7e
Compare
|
run buildall |
5dfad7e to
a3aa2ef
Compare
|
run buildall |
a3aa2ef to
fa087f0
Compare
|
run buildall |
|
run feut |
fa087f0 to
2e6781e
Compare
|
run buildall |
2e6781e to
eccf9b1
Compare
|
run buildall |
00c412b to
6b4c6f5
Compare
|
run buildall |
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
6b4c6f5 to
79b0f3e
Compare
|
run buildall |
if reference is nullable and simplify result should be
IF(${reference} IS NULL, ${nullable_result}, ${not_null_result})
79b0f3e to
5c4fa66
Compare
|
run buildall |
|
PR approved by at least one committer and no changes requested. |
…apache#41356) pick from master apache#41356 if reference is nullable and simplify result is boolean literal. the real result should be: IF(${reference} IS NULL, NULL, ${not_null_result})
…apache#41356) pick from master apache#41356 if reference is nullable and simplify result is boolean literal. the real result should be: IF(${reference} IS NULL, NULL, ${not_null_result})
…apache#41356) pick from master apache#41356 if reference is nullable and simplify result is boolean literal. the real result should be: IF(${reference} IS NULL, NULL, ${not_null_result})
…apache#41356) pick from master apache#41356 if reference is nullable and simplify result is boolean literal. the real result should be: IF(${reference} IS NULL, NULL, ${not_null_result})
if reference is nullable and simplify result is boolean literal.
the real result should be: