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
I am benchmarking with this query (based on TPC-DS q39):
select w_warehouse_name,w_warehouse_sk,i_item_sk,d_moy
,stddev_samp(inv_quantity_on_hand) stdev
from inventory
,item
,warehouse
,date_dim
where inv_item_sk = i_item_sk
and inv_warehouse_sk = w_warehouse_sk
and inv_date_sk = d_date_sk
and d_year =2001group by w_warehouse_name,w_warehouse_sk,i_item_sk,d_moy;
I suspect that implementing the GroupsAccumulator api could resolve this. Took a stab at implementing it here: apache/datafusion#12095 (issue: apache/datafusion#12094) in datafusion. This can the easily be replicated in our version of the aggregates.
What is the problem the feature request solves?
I am benchmarking with this query (based on TPC-DS q39):
Results:
If I change the query to use
avg
instead ofstddev
then I get much better results (ignore the benchmark name):Describe the potential solution
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: