ClickHouse/dbms/src/Functions/FunctionsConditional.cpp

13 lines
215 B
C++

#include <DB/Functions/FunctionFactory.h>
#include <DB/Functions/FunctionsConditional.h>
namespace DB
{
void registerFunctionsConditional(FunctionFactory & factory)
{
factory.registerFunction<FunctionIf>();
}
}