ClickHouse/dbms/src/Functions/subtractMonths.cpp

19 lines
362 B
C++
Raw Normal View History

#include <Functions/IFunction.h>
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
namespace DB
{
using FunctionSubtractMonths = FunctionDateOrDateTimeAddInterval<SubtractMonthsImpl>;
void registerFunctionSubtractMonths(FunctionFactory & factory)
{
factory.registerFunction<FunctionSubtractMonths>();
}
}