-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[Fix](Nereids) fix append_trailing_char_if_absent function return null (#40820) #41160
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
8a1a083
to
adb0649
Compare
run buildall |
adb0649
to
2be0f8f
Compare
run buildall |
1 similar comment
run buildall |
@@ -805,7 +807,13 @@ public class SessionVariable implements Serializable, Writable { | |||
private boolean enableJoinReorderBasedCost = false; | |||
|
|||
@VariableMgr.VarAttr(name = ENABLE_FOLD_CONSTANT_BY_BE, fuzzy = true) | |||
<<<<<<< HEAD |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?????
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
solved
ff43dad
to
2a18c64
Compare
run buildall |
2a18c64
to
93eed85
Compare
run buildall |
run p0 |
2 similar comments
run p0 |
run p0 |
@@ -121,6 +121,8 @@ public class SessionVariable implements Serializable, Writable { | |||
public static final String PREFER_JOIN_METHOD = "prefer_join_method"; | |||
|
|||
public static final String ENABLE_FOLD_CONSTANT_BY_BE = "enable_fold_constant_by_be"; | |||
public static final String DEBUG_SKIP_FOLD_CONSTANT = "debug_skip_fold_constant"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do not pick new session variable to this version
93eed85
to
0aa98d8
Compare
run buildall |
0aa98d8
to
3eecbc6
Compare
run buildall |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
cherry-pick: #40820
example: select append_trailing_char_if_absent('it','a') would return null in original design, it can not return null when folding constant on fe any time