mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
19 lines
348 B
C++
19 lines
348 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToDateOrDate32.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToStartOfMonth = FunctionDateOrDateTimeToDateOrDate32<ToStartOfMonthImpl>;
|
|
|
|
REGISTER_FUNCTION(ToStartOfMonth)
|
|
{
|
|
factory.registerFunction<FunctionToStartOfMonth>();
|
|
}
|
|
|
|
}
|
|
|
|
|