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