mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
19 lines
385 B
C++
19 lines
385 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToSomething.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToStartOfMonth = FunctionDateOrDateTimeToSomething<DataTypeDate, ToStartOfMonthImpl>;
|
|
|
|
void registerFunctionToStartOfMonth(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionToStartOfMonth>();
|
|
}
|
|
|
|
}
|
|
|
|
|