aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/addWeeks.cpp
blob: 366d85c4def3482ebec5080d7efe941cbf98e798 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionDateOrDateTimeAddInterval.h>


namespace DB
{

using FunctionAddWeeks = FunctionDateOrDateTimeAddInterval<AddWeeksImpl>;

REGISTER_FUNCTION(AddWeeks)
{
    factory.registerFunction<FunctionAddWeeks>();
}

}