mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
17 lines
323 B
C++
17 lines
323 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionDateOrDateTimeAddInterval.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionSubtractMilliseconds = FunctionDateOrDateTimeAddInterval<SubtractMillisecondsImpl>;
|
|
REGISTER_FUNCTION(SubtractMilliseconds)
|
|
{
|
|
factory.registerFunction<FunctionSubtractMilliseconds>();
|
|
}
|
|
|
|
}
|
|
|
|
|