Removed accidential change [#CLICKHOUSE-2]

This commit is contained in:
Alexey Milovidov 2018-12-20 20:49:37 +03:00
parent 9c65c539cd
commit 1841634ae2

View File

@ -21,7 +21,7 @@ namespace ErrorCodes
namespace
{
AggregateFunctionPtr createAggregateFunctionHistogram(const std::string &, const DataTypes &, const Array &)
AggregateFunctionPtr createAggregateFunctionHistogram(const std::string & name, const DataTypes & arguments, const Array & params)
{
if (params.size() != 1)
throw Exception("Function " + name + " requires single parameter: bins count", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);