ClickHouse/dbms/src/AggregateFunctions/AggregateFunctionArray.cpp
2017-04-16 02:49:11 +03:00

13 lines
222 B
C++

#include <AggregateFunctions/AggregateFunctionArray.h>
namespace DB
{
AggregateFunctionPtr createAggregateFunctionArray(AggregateFunctionPtr & nested)
{
return std::make_shared<AggregateFunctionArray>(nested);
}
}