ClickHouse/dbms/src/AggregateFunctions/AggregateFunctionIf.cpp

12 lines
244 B
C++
Raw Normal View History

#include <AggregateFunctions/AggregateFunctionIf.h>
2015-09-24 12:40:36 +00:00
namespace DB
{
AggregateFunctionPtr createAggregateFunctionIf(AggregateFunctionPtr & nested, const DataTypes & types)
2015-09-24 12:40:36 +00:00
{
return std::make_shared<AggregateFunctionIf>(nested, types);
2015-09-24 12:40:36 +00:00
}
}