ClickHouse/dbms/src/AggregateFunctions/AggregateFunctionForEach.cpp

12 lines
208 B
C++

#include "AggregateFunctionForEach.h"
namespace DB
{
AggregateFunctionPtr createAggregateFunctionForEach(AggregateFunctionPtr & nested)
{
return std::make_shared<AggregateFunctionForEach>(nested);
}
}