mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
12 lines
221 B
C++
12 lines
221 B
C++
#include <DB/AggregateFunctions/AggregateFunctionArray.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
AggregateFunctionPtr createAggregateFunctionArray(AggregateFunctionPtr & nested)
|
|
{
|
|
return std::make_shared<AggregateFunctionArray>(nested);
|
|
}
|
|
|
|
}
|