mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
19 lines
381 B
C++
19 lines
381 B
C++
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/DateTimeTransforms.h>
|
||
|
#include <Functions/FunctionDateOrDateTimeToSomething.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
using FunctionToStartOfYear = FunctionDateOrDateTimeToSomething<DataTypeDate, ToStartOfYearImpl>;
|
||
|
|
||
|
void registerFunctionToStartOfYear(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionToStartOfYear>();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|