1 | #include <Functions/IFunctionImpl.h> |
---|---|
2 | #include <Functions/FunctionFactory.h> |
3 | #include <Functions/FunctionDateOrDateTimeAddInterval.h> |
4 | |
5 | |
6 | namespace DB |
7 | { |
8 | |
9 | using FunctionAddMonths = FunctionDateOrDateTimeAddInterval<AddMonthsImpl>; |
10 | |
11 | void registerFunctionAddMonths(FunctionFactory & factory) |
12 | { |
13 | factory.registerFunction<FunctionAddMonths>(); |
14 | } |
15 | |
16 | } |
17 | |
18 | |
19 |