aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/toStartOfQuarter.cpp
blob: 74966d51584377439c7ddf95164d777f40034719 (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/FunctionDateOrDateTimeToDateOrDate32.h>


namespace DB
{

using FunctionToStartOfQuarter = FunctionDateOrDateTimeToDateOrDate32<ToStartOfQuarterImpl>;

REGISTER_FUNCTION(ToStartOfQuarter)
{
    factory.registerFunction<FunctionToStartOfQuarter>();
}

}