mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
19 lines
358 B
C++
19 lines
358 B
C++
|
#include <Functions/IFunction.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
using FunctionSubtractYears = FunctionDateOrDateTimeAddInterval<SubtractYearsImpl>;
|
||
|
|
||
|
void registerFunctionSubtractYears(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionSubtractYears>();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|