mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
17 lines
299 B
C++
17 lines
299 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionAddNanoseconds = FunctionDateOrDateTimeAddInterval<AddNanosecondsImpl>;
|
|
REGISTER_FUNCTION(AddNanoseconds)
|
|
{
|
|
factory.registerFunction<FunctionAddNanoseconds>();
|
|
}
|
|
|
|
}
|
|
|
|
|