mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 11:02:08 +00:00
19 lines
409 B
C++
19 lines
409 B
C++
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/DateTimeTransforms.h>
|
||
|
#include <Functions/FunctionDateOrDateTimeToSomething.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
using FunctionToStartOfFiveMinute = FunctionDateOrDateTimeToSomething<DataTypeDateTime, ToStartOfFiveMinuteImpl>;
|
||
|
|
||
|
void registerFunctionToStartOfFiveMinute(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionToStartOfFiveMinute>();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|