diff --git a/src/AggregateFunctions/AggregateFunctionQuantile.cpp b/src/AggregateFunctions/AggregateFunctionQuantile.cpp index ebd6f44df17..120fe3b6a59 100644 --- a/src/AggregateFunctions/AggregateFunctionQuantile.cpp +++ b/src/AggregateFunctions/AggregateFunctionQuantile.cpp @@ -41,8 +41,8 @@ template using FuncQuantilesExactInclusive = AggregateF template using FuncQuantileExactWeighted = AggregateFunctionQuantile, NameQuantileExactWeighted, true, void, false>; template using FuncQuantilesExactWeighted = AggregateFunctionQuantile, NameQuantilesExactWeighted, true, void, true>; -template using FuncQuantileApproximateWeighted = AggregateFunctionQuantile, NameQuantileApproximateWeighted, true, void, false>; -template using FuncQuantilesApproximateWeighted = AggregateFunctionQuantile, NameQuantilesApproximateWeighted, true, void, true>; +template using FuncQuantileInterpolatedWeighted = AggregateFunctionQuantile, NameQuantileInterpolatedWeighted, true, void, false>; +template using FuncQuantilesInterpolatedWeighted = AggregateFunctionQuantile, NameQuantilesInterpolatedWeighted, true, void, true>; template using FuncQuantileTiming = AggregateFunctionQuantile, NameQuantileTiming, false, Float32, false>; template using FuncQuantilesTiming = AggregateFunctionQuantile, NameQuantilesTiming, false, Float32, true>; @@ -75,8 +75,8 @@ constexpr bool supportDecimal() std::is_same_v, FuncQuantilesExactHigh> || std::is_same_v, FuncQuantileExactWeighted> || std::is_same_v, FuncQuantilesExactWeighted> || - std::is_same_v, FuncQuantileApproximateWeighted> || - std::is_same_v, FuncQuantilesApproximateWeighted>; + std::is_same_v, FuncQuantileInterpolatedWeighted> || + std::is_same_v, FuncQuantilesInterpolatedWeighted>; } template