[feature](agg) add aggregate function sum0 (#32541)

This commit is contained in:
Jensen
2024-03-28 11:46:31 +08:00
committed by yiguolei
parent e3bd2311b1
commit bb8bc75af4
9 changed files with 1161 additions and 208 deletions

View File

@ -31,4 +31,8 @@ void register_aggregate_function_sum(AggregateFunctionSimpleFactory& factory) {
"sum_decimal256", creator_with_type::creator<AggregateFunctionSumSimpleDecimal256>);
}
void register_aggregate_function_sum0(AggregateFunctionSimpleFactory& factory) {
factory.register_function_both("sum0", creator_with_type::creator<AggregateFunctionSumSimple>);
}
} // namespace doris::vectorized