mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
19 lines
356 B
C++
19 lines
356 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToDateTimeOrDateTime64.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToStartOfDay = FunctionDateOrDateTimeToDateTimeOrDateTime64<ToStartOfDayImpl>;
|
|
|
|
REGISTER_FUNCTION(ToStartOfDay)
|
|
{
|
|
factory.registerFunction<FunctionToStartOfDay>();
|
|
}
|
|
|
|
}
|
|
|
|
|