1 | #include <Functions/FunctionFactory.h> |
---|---|
2 | #include <Functions/FunctionsFormatting.h> |
3 | |
4 | |
5 | namespace DB |
6 | { |
7 | |
8 | void registerFunctionsFormatting(FunctionFactory & factory) |
9 | { |
10 | factory.registerFunction<FunctionBitmaskToList>(); |
11 | factory.registerFunction<FunctionFormatReadableSize>(); |
12 | } |
13 | |
14 | } |
15 |