Skip to content

Commit

Permalink
[Bug](compatibility) fix percentile_approx function coredump when upg…
Browse files Browse the repository at this point in the history
…rade
  • Loading branch information
zhangstar333 committed Aug 13, 2024
1 parent 2459a3e commit 64a8d93
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ AggregateFunctionPtr create_aggregate_function_percentile_approx_older(
}
if (argument_types.size() == 2) {
return creator_without_type::create<
AggregateFunctionPercentileApproxTwoParams_OLDER<is_nullable>>((argument_types),
result_is_nullable);
AggregateFunctionPercentileApproxTwoParams_OLDER<is_nullable>>(
remove_nullable(argument_types), result_is_nullable);
}
if (argument_types.size() == 3) {
return creator_without_type::create<
Expand Down

0 comments on commit 64a8d93

Please sign in to comment.