mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-19 04:42:37 +00:00
18 lines
304 B
C++
18 lines
304 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionAddMicroseconds = FunctionDateOrDateTimeAddInterval<AddMicrosecondsImpl>;
|
|
|
|
REGISTER_FUNCTION(AddMicroseconds)
|
|
{
|
|
factory.registerFunction<FunctionAddMicroseconds>();
|
|
}
|
|
|
|
}
|
|
|
|
|