-
Notifications
You must be signed in to change notification settings - Fork 3.6k
[Improvement](function) reduce cast of input arg from decimal avg #58666
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
base: master
Are you sure you want to change the base?
Conversation
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
|
run buildall |
FE UT Coverage ReportIncrement line coverage |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
8652b5e to
1d6b21e
Compare
|
run buildall |
1d6b21e to
f4cefe7
Compare
|
run buildall |
f4cefe7 to
c222035
Compare
|
run buildall |
a712163 to
6525c51
Compare
|
run buildall |
update fix fix fix fix fix
6525c51 to
3a29c94
Compare
|
run buildall |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
FE Regression Coverage ReportIncrement line coverage |
|
run buildall |
|
run buildall |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
|
run buildall |
What problem does this PR solve?
before:
partial_avg(CAST((CAST(ss_quantity[#23] AS decimalv3(10,0)) * ss_list_price[#24]) AS decimalv3(19,4)))[#25]
doris 28.42 sec
doris disable check 25.17 sec
after:
partial_avg((CAST(ss_quantity[#23] AS decimalv3(10,0)) * ss_list_price[#24]))[#25]
doris 19.14 sec
doris disable check 17.12 sec
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)