mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
18 lines
313 B
C++
18 lines
313 B
C++
|
#include <Functions/FunctionFactory.h>
|
||
|
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
using FunctionAddSeconds = FunctionDateOrDateTimeAddInterval<AddSecondsImpl>;
|
||
|
|
||
|
void registerFunctionAddSeconds(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionAddSeconds>();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|