mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 19:42:00 +00:00
fix error
This commit is contained in:
parent
2c7eeea55c
commit
1b3fc31904
@ -13,7 +13,7 @@ struct Settings;
|
|||||||
AggregateFunctionPtr createAggregateFunctionNothing(const std::string & name, const DataTypes & argument_types, const Array & parameters, const Settings *)
|
AggregateFunctionPtr createAggregateFunctionNothing(const std::string & name, const DataTypes & argument_types, const Array & parameters, const Settings *)
|
||||||
{
|
{
|
||||||
assertNoParameters(name, parameters);
|
assertNoParameters(name, parameters);
|
||||||
assertArityAtMost<1>(name, argument_types);
|
assertUnary(name, argument_types);
|
||||||
|
|
||||||
return std::make_shared<AggregateFunctionNothing>(argument_types, parameters);
|
return std::make_shared<AggregateFunctionNothing>(argument_types, parameters);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user