aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/toRelativeQuarterNum.cpp
blob: c7702d47f4202d573957719b1c4dc59604973a91 (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 FunctionToRelativeQuarterNum = FunctionDateOrDateTimeToSomething<DataTypeUInt32, ToRelativeQuarterNumImpl<ResultPrecision::Standard>>;

REGISTER_FUNCTION(ToRelativeQuarterNum)
{
    factory.registerFunction<FunctionToRelativeQuarterNum>();
}

}