ClickHouse/src/Functions/toRelativeYearNum.cpp

20 lines
416 B
C++

#include <Functions/FunctionFactory.h>
#include <Functions/DateTimeTransforms.h>
#include <Functions/FunctionDateOrDateTimeToSomething.h>
#include <DataTypes/DataTypesNumber.h>
namespace DB
{
using FunctionToRelativeYearNum = FunctionDateOrDateTimeToSomething<DataTypeUInt16, ToRelativeYearNumImpl<false>>;
REGISTER_FUNCTION(ToRelativeYearNum)
{
factory.registerFunction<FunctionToRelativeYearNum>();
}
}