ClickHouse/dbms/src/Functions/FunctionsConditional.cpp

14 lines
261 B
C++
Raw Normal View History

#include <DB/Functions/FunctionFactory.h>
#include <DB/Functions/FunctionsConditional.h>
namespace DB
{
void registerFunctionsConditional(FunctionFactory & factory)
{
factory.registerFunction<FunctionIf>();
2016-04-18 14:31:32 +00:00
factory.registerFunction<FunctionMultiIf>();
}
}