From 8b1b96bfd8b97c9ad09a27e4d9649e94b88d2ba1 Mon Sep 17 00:00:00 2001 From: Nikolai Kochetov Date: Mon, 1 Jun 2020 19:32:56 +0300 Subject: [PATCH] Fix build. --- src/AggregateFunctions/AggregateFunctionQuantile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AggregateFunctions/AggregateFunctionQuantile.h b/src/AggregateFunctions/AggregateFunctionQuantile.h index cf5a5fba892..7bdfc13295c 100644 --- a/src/AggregateFunctions/AggregateFunctionQuantile.h +++ b/src/AggregateFunctions/AggregateFunctionQuantile.h @@ -78,8 +78,8 @@ private: DataTypePtr & argument_type; public: - AggregateFunctionQuantile(const DataTypes & argument_types, const Array & params) - : IAggregateFunctionDataHelper>(argument_types, params) + AggregateFunctionQuantile(const DataTypes & argument_types_, const Array & params) + : IAggregateFunctionDataHelper>(argument_types_, params) , levels(params, returns_many), level(levels.levels[0]), argument_type(this->argument_types[0]) { if (!returns_many && levels.size() > 1)