| 1 | namespace DB |
|---|---|
| 2 | { |
| 3 | |
| 4 | class FunctionFactory; |
| 5 | |
| 6 | void registerFunctionIsNull(FunctionFactory & factory); |
| 7 | void registerFunctionIsNotNull(FunctionFactory & factory); |
| 8 | void registerFunctionCoalesce(FunctionFactory & factory); |
| 9 | void registerFunctionIfNull(FunctionFactory & factory); |
| 10 | void registerFunctionNullIf(FunctionFactory & factory); |
| 11 | void registerFunctionAssumeNotNull(FunctionFactory & factory); |
| 12 | void registerFunctionToNullable(FunctionFactory & factory); |
| 13 | |
| 14 | |
| 15 | void registerFunctionsNull(FunctionFactory & factory) |
| 16 | { |
| 17 | registerFunctionIsNull(factory); |
| 18 | registerFunctionIsNotNull(factory); |
| 19 | registerFunctionCoalesce(factory); |
| 20 | registerFunctionIfNull(factory); |
| 21 | registerFunctionNullIf(factory); |
| 22 | registerFunctionAssumeNotNull(factory); |
| 23 | registerFunctionToNullable(factory); |
| 24 | } |
| 25 | |
| 26 | } |
| 27 |