mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
20 lines
417 B
C++
20 lines
417 B
C++
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/DateTimeTransforms.h>
|
||
|
#include <Functions/FunctionDateOrDateTimeToSomething.h>
|
||
|
#include <DataTypes/DataTypesNumber.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
using FunctionToDayOfMonth = FunctionDateOrDateTimeToSomething<DataTypeUInt8, ToDayOfMonthImpl>;
|
||
|
|
||
|
void registerFunctionToDayOfMonth(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionToDayOfMonth>();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|