aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/toHour.cpp
blob: a6a57946e33bdd8c7241f7648f2e32b896e7943a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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>();

    /// MysQL compatibility alias.
    factory.registerAlias("HOUR", "toHour", FunctionFactory::CaseInsensitive);
}

}