ClickHouse/dbms/src/AggregateFunctions/AggregateFunctionArray.cpp

13 lines
222 B
C++
Raw Normal View History

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