2014-08-22 00:57:20 +00:00
|
|
|
#include <DB/Functions/FunctionFactory.h>
|
|
|
|
#include <DB/Functions/FunctionsRound.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
void registerFunctionsRound(FunctionFactory & factory)
|
|
|
|
{
|
2014-11-12 17:23:26 +00:00
|
|
|
factory.registerFunction<FunctionRoundToExp2>();
|
|
|
|
factory.registerFunction<FunctionRoundDuration>();
|
|
|
|
factory.registerFunction<FunctionRoundAge>();
|
2015-05-08 15:15:52 +00:00
|
|
|
factory.registerFunction<FunctionRound>();
|
2015-05-12 23:11:15 +00:00
|
|
|
factory.registerFunction<FunctionCeil>();
|
|
|
|
factory.registerFunction<FunctionFloor>();
|
2014-08-22 00:57:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|