mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
15 lines
282 B
C++
15 lines
282 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionsFormatting.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionsFormatting(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionBitmaskToList>();
|
|
factory.registerFunction<FunctionFormatReadableSize>();
|
|
}
|
|
|
|
}
|