ClickHouse/src/Functions/toHour.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
477 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 FunctionToHour = FunctionDateOrDateTimeToSomething<DataTypeUInt8, ToHourImpl>;
REGISTER_FUNCTION(ToHour)
{
factory.registerFunction<FunctionToHour>();
2021-01-21 20:28:20 +00:00
2023-09-09 16:48:17 +00:00
/// MySQL compatibility alias.
factory.registerAlias("HOUR", "toHour", FunctionFactory::CaseInsensitive);
}
}