mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 06:32:08 +00:00
19 lines
342 B
C++
19 lines
342 B
C++
|
#include <Functions/IFunction.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
using FunctionAddMonths = FunctionDateOrDateTimeAddInterval<AddMonthsImpl>;
|
||
|
|
||
|
void registerFunctionAddMonths(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionAddMonths>();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|