ClickHouse/dbms/src/AggregateFunctions/AggregateFunctionState.cpp

12 lines
221 B
C++
Raw Normal View History

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