Uh oh!
There was an error while loading. Please reload this page.
[fix](Nereids) simplify range result wrong when reference is nullable - #41356
Merged
Conversation
doris-robot
commented
Sep 26, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
morrySnow
commented
Sep 26, 2024
ContributorAuthor
run buildall |
morrySnowforce-pushed
the
fix_simplify_range
branch
from
September 26, 2024 16:25
8583579 to
366e516ComparemorrySnow
commented
Sep 26, 2024
ContributorAuthor
run buildall |
morrySnowforce-pushed
the
fix_simplify_range
branch
from
September 30, 2024 09:29
366e516 to
e0fcbf5ComparemorrySnow
commented
Sep 30, 2024
ContributorAuthor
run buildall |
morrySnowforce-pushed
the
fix_simplify_range
branch
from
October 8, 2024 03:00
e0fcbf5 to
5dfad7eComparemorrySnow
commented
Oct 8, 2024
ContributorAuthor
run buildall |
morrySnowforce-pushed
the
fix_simplify_range
branch
from
October 8, 2024 07:24
5dfad7e to
a3aa2efComparemorrySnow
commented
Oct 8, 2024
ContributorAuthor
run buildall |
morrySnowforce-pushed
the
fix_simplify_range
branch
from
October 11, 2024 10:58
a3aa2ef to
fa087f0ComparemorrySnow
commented
Oct 11, 2024
ContributorAuthor
run buildall |
morrySnow
commented
Oct 12, 2024
ContributorAuthor
run feut |
morrySnowforce-pushed
the
fix_simplify_range
branch
from
October 14, 2024 06:06
fa087f0 to
2e6781eComparemorrySnow
commented
Oct 14, 2024
ContributorAuthor
run buildall |
morrySnowforce-pushed
the
fix_simplify_range
branch
from
October 14, 2024 10:23
2e6781e to
eccf9b1ComparemorrySnow
commented
Oct 14, 2024
ContributorAuthor
run buildall |
morrySnowforce-pushed
the
fix_simplify_range
branch
2 times, most recently
from
October 15, 2024 08:43
00c412b to
6b4c6f5ComparemorrySnow
commented
Oct 15, 2024
ContributorAuthor
run buildall |
starocean999
previously approved these changes
Oct 15, 2024
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
morrySnowforce-pushed
the
fix_simplify_range
branch
from
October 15, 2024 10:34
6b4c6f5 to
79b0f3eComparemorrySnow
commented
Oct 15, 2024
ContributorAuthor
run buildall |
if reference is nullable and simplify result should be
IF(${reference} IS NULL, ${nullable_result}, ${not_null_result})morrySnowforce-pushed
the
fix_simplify_range
branch
from
October 16, 2024 09:21
79b0f3e to
5c4fa66ComparemorrySnow
commented
Oct 16, 2024
ContributorAuthor
run buildall |
starocean999
approved these changes
Oct 17, 2024
Contributor
PR approved by at least one committer and no changes requested. |
englefly
approved these changes
Oct 17, 2024
yiguolei pushed a commit
that referenced
this pull request
Oct 18, 2024
morrySnow added a commit
to morrySnow/incubator-doris
that referenced
this pull request
Oct 24, 2024
…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})
morrySnow added a commit
to morrySnow/incubator-doris
that referenced
this pull request
Oct 25, 2024
…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})
morrySnow added a commit
to morrySnow/incubator-doris
that referenced
this pull request
Oct 25, 2024
…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})
morrySnow added a commit
to morrySnow/incubator-doris
that referenced
this pull request
Oct 28, 2024
…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})
morrySnow added a commit
that referenced
this pull request
Oct 29, 2024
morrySnow added a commit
that referenced
this pull request
Nov 1, 2024
Closed
Closed
HappenLee pushed a commit
to HappenLee/incubator-doris
that referenced
this pull request
Apr 24, 2026
…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})
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 freeto 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.
if reference is nullable and simplify result is boolean literal.
the real result should be: