aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/toStartOfDay.cpp
blob: 6b9dddb5e46fa626779f0094da97c09a7f7eb8a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <Functions/FunctionFactory.h>
#include <Functions/DateTimeTransforms.h>
#include <Functions/FunctionDateOrDateTimeToDateTimeOrDateTime64.h>


namespace DB
{

using FunctionToStartOfDay = FunctionDateOrDateTimeToDateTimeOrDateTime64<ToStartOfDayImpl>;

REGISTER_FUNCTION(ToStartOfDay)
{
    factory.registerFunction<FunctionToStartOfDay>();
}

}