ClickHouse/src/Functions/toQuarter.cpp

20 lines
507 B
C++
Raw Normal View History

#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.
2022-08-27 20:06:03 +00:00
factory.registerFunction<FunctionToQuarter>("QUARTER", {}, FunctionFactory::CaseInsensitive);
}
}