mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5b1eaba276
* Every function in its own file, part 6 [#CLICKHOUSE-2] * Every function in its own file, part 6 [#CLICKHOUSE-2] * Every function in its own file, part 6 [#CLICKHOUSE-2]
27 lines
786 B
C++
27 lines
786 B
C++
namespace DB
|
|
{
|
|
|
|
class FunctionFactory;
|
|
|
|
void registerFunctionIsNull(FunctionFactory & factory);
|
|
void registerFunctionIsNotNull(FunctionFactory & factory);
|
|
void registerFunctionCoalesce(FunctionFactory & factory);
|
|
void registerFunctionIfNull(FunctionFactory & factory);
|
|
void registerFunctionNullIf(FunctionFactory & factory);
|
|
void registerFunctionAssumeNotNull(FunctionFactory & factory);
|
|
void registerFunctionToNullable(FunctionFactory & factory);
|
|
|
|
void registerFunctionsNull(FunctionFactory & factory)
|
|
{
|
|
registerFunctionIsNull(factory);
|
|
registerFunctionIsNotNull(factory);
|
|
registerFunctionCoalesce(factory);
|
|
registerFunctionIfNull(factory);
|
|
registerFunctionNullIf(factory);
|
|
registerFunctionAssumeNotNull(factory);
|
|
registerFunctionToNullable(factory);
|
|
}
|
|
|
|
}
|
|
|