aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/toStartOfISOYear.cpp
blob: 245d043f0b6a10df62d12a9cba6e726d807974ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <Functions/FunctionFactory.h>
#include <Functions/DateTimeTransforms.h>
#include <Functions/FunctionDateOrDateTimeToDateOrDate32.h>


namespace DB
{

using FunctionToStartOfISOYear = FunctionDateOrDateTimeToDateOrDate32<ToStartOfISOYearImpl>;

REGISTER_FUNCTION(ToStartOfISOYear)
{
    factory.registerFunction<FunctionToStartOfISOYear>();
}

}