ClickHouse/dbms/src/AggregateFunctions/AggregateFunctionArray.cpp
2017-04-01 11:35:09 +03:00

12 lines
224 B
C++

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