[Enhancement](array-type) Support Floating/Decimal type for array aggregation functions (#12271)
This commit is contained in:
@ -106,7 +106,7 @@ struct AggregateFunctionImpl<AggregateOperation::PRODUCT> {
|
||||
template <typename Element>
|
||||
struct TypeTraits {
|
||||
using ResultType = ArrayAggregateResult<Element, AggregateOperation::PRODUCT>;
|
||||
using AggregateDataType = AggregateFunctionProductData<Element>;
|
||||
using AggregateDataType = AggregateFunctionProductData<ResultType>;
|
||||
using Function = AggregateFunctionProduct<Element, ResultType, AggregateDataType>;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user