ClickHouse/dbms/src/Functions/registerFunctionsNull.cpp

16 lines
382 B
C++
Raw Normal View History

2019-12-15 06:34:43 +00:00
#include "registerFunctions.h"
namespace DB
{
void registerFunctionsNull(FunctionFactory & factory)
{
registerFunctionIsNull(factory);
registerFunctionIsNotNull(factory);
registerFunctionCoalesce(factory);
registerFunctionIfNull(factory);
registerFunctionNullIf(factory);
registerFunctionAssumeNotNull(factory);
registerFunctionToNullable(factory);
}
}