blob: 783a1341e23fc9b5c3baa7aca4f398b03d62f760 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <Functions/FunctionFactory.h>
#include <Functions/DateTimeTransforms.h>
#include <Functions/FunctionDateOrDateTimeToSomething.h>
#include <DataTypes/DataTypesNumber.h>
namespace DB
{
using FunctionToMonth = FunctionDateOrDateTimeToSomething<DataTypeUInt8, ToMonthImpl>;
REGISTER_FUNCTION(ToMonth)
{
factory.registerFunction<FunctionToMonth>();
/// MysQL compatibility alias.
factory.registerAlias("MONTH", "toMonth", FunctionFactory::CaseInsensitive);
}
}
|