| 1 | namespace DB |
|---|---|
| 2 | { |
| 3 | |
| 4 | class FunctionFactory; |
| 5 | |
| 6 | void registerFunctionTuple(FunctionFactory &); |
| 7 | void registerFunctionTupleElement(FunctionFactory &); |
| 8 | |
| 9 | void registerFunctionsTuple(FunctionFactory & factory) |
| 10 | { |
| 11 | registerFunctionTuple(factory); |
| 12 | registerFunctionTupleElement(factory); |
| 13 | } |
| 14 | |
| 15 | } |
| 16 |