mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
17 lines
319 B
C++
17 lines
319 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionSubtractNanoseconds = FunctionDateOrDateTimeAddInterval<SubtractNanosecondsImpl>;
|
|
REGISTER_FUNCTION(SubtractNanoseconds)
|
|
{
|
|
factory.registerFunction<FunctionSubtractNanoseconds>();
|
|
}
|
|
|
|
}
|
|
|
|
|