2018-09-26 00:31:40 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/DateTimeTransforms.h>
|
|
|
|
#include <Functions/FunctionDateOrDateTimeToSomething.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
using FunctionToDayOfMonth = FunctionDateOrDateTimeToSomething<DataTypeUInt8, ToDayOfMonthImpl>;
|
|
|
|
|
2022-07-04 07:01:39 +00:00
|
|
|
REGISTER_FUNCTION(ToDayOfMonth)
|
2018-09-26 00:31:40 +00:00
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionToDayOfMonth>();
|
2021-01-21 20:49:06 +00:00
|
|
|
|
2023-09-09 16:48:17 +00:00
|
|
|
/// MySQL compatibility alias.
|
2022-08-27 21:53:51 +00:00
|
|
|
factory.registerAlias("DAY", "toDayOfMonth", FunctionFactory::CaseInsensitive);
|
|
|
|
factory.registerAlias("DAYOFMONTH", "toDayOfMonth", FunctionFactory::CaseInsensitive);
|
2018-09-26 00:31:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|