mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
18 lines
442 B
C++
18 lines
442 B
C++
#include <DB/Functions/FunctionFactory.h>
|
|
#include <DB/Functions/FunctionsRound.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionsRound(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionRoundToExp2>();
|
|
factory.registerFunction<FunctionRoundDuration>();
|
|
factory.registerFunction<FunctionRoundAge>();
|
|
factory.registerFunction<FunctionRound>();
|
|
factory.registerFunction<FunctionCeil>();
|
|
factory.registerFunction<FunctionFloor>();
|
|
}
|
|
|
|
}
|