You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When executing a sum aggregation in a groupby apply UDF, the result can diverge from pandas in some cases, specifically when large values are present. This is likely due to some result not being promoted to int64 somewhere it ought to be.
Expected behavior
Results should be the same as pandas.
Environment overview (please complete the following information)
Bare-metal, 23.10
Additional context
came up during #13813. The above test fails for mean, var, and std as well. Since these three reductions also involve a summation, I suspect the root cause could be the same.
The text was updated successfully, but these errors were encountered:
Describe the bug
When executing a
sum
aggregation in a groupby apply UDF, the result can diverge from pandas in some cases, specifically when large values are present. This is likely due to some result not being promoted toint64
somewhere it ought to be.Steps/Code to reproduce bug
Expected behavior
Results should be the same as pandas.
Environment overview (please complete the following information)
Bare-metal, 23.10
Additional context
came up during #13813. The above test fails for
mean
,var
, andstd
as well. Since these three reductions also involve a summation, I suspect the root cause could be the same.The text was updated successfully, but these errors were encountered: