mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
12 lines
212 B
C++
12 lines
212 B
C++
#include <AggregateFunctions/AggregateFunctionIf.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
AggregateFunctionPtr createAggregateFunctionIf(AggregateFunctionPtr & nested)
|
|
{
|
|
return std::make_shared<AggregateFunctionIf>(nested);
|
|
}
|
|
|
|
}
|