mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 03:22:14 +00:00
19 lines
393 B
C++
19 lines
393 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/DateTimeTransforms.h>
|
|
#include <Functions/FunctionDateOrDateTimeToSomething.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionToStartOfISOYear = FunctionDateOrDateTimeToSomething<DataTypeDate, ToStartOfISOYearImpl>;
|
|
|
|
void registerFunctionToStartOfISOYear(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionToStartOfISOYear>();
|
|
}
|
|
|
|
}
|
|
|
|
|