ClickHouse/dbms/src/AggregateFunctions/AggregateFunctionArray.cpp

12 lines
221 B
C++
Raw Normal View History

2015-09-24 12:40:36 +00:00
#include <DB/AggregateFunctions/AggregateFunctionArray.h>
namespace DB
{
AggregateFunctionPtr createAggregateFunctionArray(AggregateFunctionPtr & nested)
{
return std::make_shared<AggregateFunctionArray>(nested);
2015-09-24 12:40:36 +00:00
}
}