mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
13 lines
254 B
C++
13 lines
254 B
C++
#include <AggregateFunctions/AggregateFunctionArray.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
AggregateFunctionPtr createAggregateFunctionArray(AggregateFunctionPtr & nested, const DataTypes & types)
|
|
{
|
|
return std::make_shared<AggregateFunctionArray>(nested, types);
|
|
}
|
|
|
|
|
|
}
|