-
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
[fix](Nereids) fix fold constant by be return type mismatched #39723
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: 38325 ms
|
TPC-DS: Total hot run time: 186767 ms
|
ClickBench: Total hot run time: 30.5 s
|
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
@@ -176,7 +176,11 @@ private static Expression replace( | |||
if (newChild != child) { | |||
hasNewChildren = true; | |||
} | |||
newChildren.add(newChild); | |||
if (newChild.getDataType() != child.getDataType()) { |
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.
should use equals
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.
done
137723b
to
de3e82d
Compare
run buildall |
TPC-H: Total hot run time: 43468 ms
|
TPC-DS: Total hot run time: 195649 ms
|
ClickBench: Total hot run time: 30.88 s
|
de3e82d
to
5b9da22
Compare
run buildall |
TPC-H: Total hot run time: 41904 ms
|
TPC-DS: Total hot run time: 199436 ms
|
ClickBench: Total hot run time: 32.36 s
|
run p0 |
run buildall |
TPC-H: Total hot run time: 42028 ms
|
TPC-DS: Total hot run time: 194730 ms
|
ClickBench: Total hot run time: 32.76 s
|
PR approved by at least one committer and no changes requested. |
…#39723) when using fold constant by be, the return type of substring('123456', 1, 3) would changed to be text, which we want it to be 3
when using fold constant by be, the return type of substring('123456', 1, 3) would changed to be text, which we want it to be 3
…#41164) (#41537) cherry-pick: #39723 #41164 because later problem is intro by prev one, so put them together when using fold constant by be, the return type of substring('123456',1, 3) would changed to be text, which we want it to be 3 remove windowframe in window expression to avoid folding constant on be
…#39723)(apache#41164) (apache#41537) cherry-pick: apache#39723 apache#41164 because later problem is intro by prev one, so put them together when using fold constant by be, the return type of substring('123456',1, 3) would changed to be text, which we want it to be 3 remove windowframe in window expression to avoid folding constant on be
…#39723)(apache#41164) (apache#41537) cherry-pick: apache#39723 apache#41164 because later problem is intro by prev one, so put them together when using fold constant by be, the return type of substring('123456',1, 3) would changed to be text, which we want it to be 3 remove windowframe in window expression to avoid folding constant on be
…#41164)(#41331)(#41546) (#41838) cherry-pick: #39723 #41164 #41331 #41546 because later problem is intro by prev one, so put them together when using fold constant by be, the return type of substring('123456',1, 3) would changed to be text, which we want it to be 3 remove windowframe in window expression to avoid folding constant on be
when using fold constant by be, the return type of substring('123456', 1, 3) would changed to be text, which we want it to be 3