diff --git a/be/src/vec/aggregate_functions/aggregate_function_regr_union.cpp b/be/src/vec/aggregate_functions/aggregate_function_regr_union.cpp index ee255bc6cf3cb6..9c635fe136665d 100644 --- a/be/src/vec/aggregate_functions/aggregate_function_regr_union.cpp +++ b/be/src/vec/aggregate_functions/aggregate_function_regr_union.cpp @@ -27,10 +27,11 @@ namespace doris::vectorized { -template class StatFunctionTemplate> -AggregateFunctionPtr type_dispatch_for_aggregate_function_regr( - const DataTypes& argument_types, const bool& result_is_nullable, bool y_nullable_input, - bool x_nullable_input) { +template class StatFunctionTemplate> +AggregateFunctionPtr type_dispatch_for_aggregate_function_regr(const DataTypes& argument_types, + const bool& result_is_nullable, + bool y_nullable_input, + bool x_nullable_input) { if (y_nullable_input) { if (x_nullable_input) { return creator_without_type::create_ignore_nullable< @@ -54,7 +55,7 @@ AggregateFunctionPtr type_dispatch_for_aggregate_function_regr( } } -template class StatFunctionTemplate> +template