mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
19 lines
368 B
C++
19 lines
368 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToDateTimeOrDateTime64.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToStartOfMinute = FunctionDateOrDateTimeToDateTimeOrDateTime64<ToStartOfMinuteImpl>;
|
|
|
|
REGISTER_FUNCTION(ToStartOfMinute)
|
|
{
|
|
factory.registerFunction<FunctionToStartOfMinute>();
|
|
}
|
|
|
|
}
|
|
|
|
|