aboutsummaryrefslogblamecommitdiffstats
path: root/contrib/clickhouse/src/Functions/toYYYYMM.cpp
blob: 5b5f6bfe2fe06a7a11bafe0b6e260597cabe7976 (plain) (tree)

















                                                                                         
#include <Functions/FunctionFactory.h>
#include <Functions/DateTimeTransforms.h>
#include <Functions/FunctionDateOrDateTimeToSomething.h>
#include <DataTypes/DataTypesNumber.h>


namespace DB
{

using FunctionToYYYYMM = FunctionDateOrDateTimeToSomething<DataTypeUInt32, ToYYYYMMImpl>;

REGISTER_FUNCTION(ToYYYYMM)
{
    factory.registerFunction<FunctionToYYYYMM>();
}

}