Uh oh!
There was an error while loading. Please reload this page.
[Bug](compatibility) fix stddev_samp function coredump when upgrade - #40438
Conversation
doris-robot
commented
Sep 5, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
zhangstar333
commented
Sep 5, 2024
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Sep 5, 2024
TPC-H: Total hot run time: 38129 ms |
doris-robot
commented
Sep 5, 2024
TPC-DS: Total hot run time: 187626 ms |
doris-robot
commented
Sep 5, 2024
ClickBench: Total hot run time: 33.61 s |
doris-robot
commented
Sep 5, 2024
TeamCity be ut coverage result: |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
…pache#40438) ## Proposed changes ``` if (IAggregateFunction::version < AGG_FUNCTION_NULLABLE) { return make_nullable(Data::get_return_type()); } else { return Data::get_return_type(); } ``` before check two version , and then get return type, but now in branch-21, the IAggregateFunction::version have update to 5, and also AGG_FUNCTION_NEW=5 so the check will not get right return type. <!--Describe your changes.-->
…40438) ## Proposed changes ``` if (IAggregateFunction::version < AGG_FUNCTION_NULLABLE) { return make_nullable(Data::get_return_type()); } else { return Data::get_return_type(); } ``` before check two version , and then get return type, but now in branch-21, the IAggregateFunction::version have update to 5, and also AGG_FUNCTION_NEW=5 so the check will not get right return type. <!--Describe your changes.-->
…pache#40438) ## Proposed changes ``` if (IAggregateFunction::version < AGG_FUNCTION_NULLABLE) { return make_nullable(Data::get_return_type()); } else { return Data::get_return_type(); } ``` before check two version , and then get return type, but now in branch-21, the IAggregateFunction::version have update to 5, and also AGG_FUNCTION_NEW=5 so the check will not get right return type. <!--Describe your changes.-->
Proposed changes
before check two version , and then get return type,
but now in branch-21, the IAggregateFunction::version have update to 5,
and also AGG_FUNCTION_NEW=5
so the check will not get right return type.