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


namespace DB
{

using FunctionToQuarter = FunctionDateOrDateTimeToSomething<DataTypeUInt8, ToQuarterImpl>;

REGISTER_FUNCTION(ToQuarter)
{
    factory.registerFunction<FunctionToQuarter>();
    /// MysQL compatibility alias.
    factory.registerAlias("QUARTER", "toQuarter", FunctionFactory::CaseInsensitive);
}

}