| 1 | namespace DB |
|---|---|
| 2 | { |
| 3 | |
| 4 | class FunctionFactory; |
| 5 | |
| 6 | void registerFunctionIf(FunctionFactory & factory); |
| 7 | void registerFunctionMultiIf(FunctionFactory & factory); |
| 8 | void registerFunctionCaseWithExpression(FunctionFactory & factory); |
| 9 | |
| 10 | |
| 11 | void registerFunctionsConditional(FunctionFactory & factory) |
| 12 | { |
| 13 | registerFunctionIf(factory); |
| 14 | registerFunctionMultiIf(factory); |
| 15 | registerFunctionCaseWithExpression(factory); |
| 16 | } |
| 17 | |
| 18 | } |
| 19 |