mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
19 lines
338 B
C++
19 lines
338 B
C++
#include <Functions/IFunction.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionAddYears = FunctionDateOrDateTimeAddInterval<AddYearsImpl>;
|
|
|
|
void registerFunctionAddYears(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionAddYears>();
|
|
}
|
|
|
|
}
|
|
|
|
|