#include #include namespace DB { using FunctionSubtractNanoseconds = FunctionDateOrDateTimeAddInterval; REGISTER_FUNCTION(SubtractNanoseconds) { factory.registerFunction(); } using FunctionSubtractMicroseconds = FunctionDateOrDateTimeAddInterval; REGISTER_FUNCTION(SubtractMicroseconds) { factory.registerFunction(); } using FunctionSubtractMilliseconds = FunctionDateOrDateTimeAddInterval; REGISTER_FUNCTION(SubtractMilliseconds) { factory.registerFunction(); } }