jacktengg commented on code in PR #66761: URL: https://github.com/apache/doris/pull/66761#discussion_r3868133047
########## be/src/exprs/function/function_date_or_datetime_computation.cpp: ########## @@ -88,6 +88,35 @@ using FunctionDatetimeAddWeeks = FunctionDateOrDateTimeComputation<AddWeeksImpl< using FunctionDatetimeAddMonths = FunctionDateOrDateTimeComputation<AddMonthsImpl<TYPE_DATETIMEV2>>; using FunctionDatetimeAddYears = FunctionDateOrDateTimeComputation<AddYearsImpl<TYPE_DATETIMEV2>>; +#define TIMESTAMP_NS_COMPUTATION_ALIAS(NAME, IMPL) \ + using FunctionTimeStampNs##NAME = FunctionDateOrDateTimeComputation<IMPL<TYPE_TIMESTAMP_NS>> + +TIMESTAMP_NS_COMPUTATION_ALIAS(AddMicroseconds, AddMicrosecondsImpl); +using FunctionTimeStampNsAddNanoseconds = FunctionDateOrDateTimeComputation<AddNanosecondsImpl>; +TIMESTAMP_NS_COMPUTATION_ALIAS(AddMilliseconds, AddMillisecondsImpl); +TIMESTAMP_NS_COMPUTATION_ALIAS(AddSeconds, AddSecondsImpl); +TIMESTAMP_NS_COMPUTATION_ALIAS(AddMinutes, AddMinutesImpl); +TIMESTAMP_NS_COMPUTATION_ALIAS(AddHours, AddHoursImpl); +TIMESTAMP_NS_COMPUTATION_ALIAS(AddDays, AddDaysImpl); +TIMESTAMP_NS_COMPUTATION_ALIAS(AddWeeks, AddWeeksImpl); +TIMESTAMP_NS_COMPUTATION_ALIAS(AddMonths, AddMonthsImpl); +TIMESTAMP_NS_COMPUTATION_ALIAS(AddYears, AddYearsImpl); +TIMESTAMP_NS_COMPUTATION_ALIAS(AddQuarters, AddQuartersImpl); Review Comment: 之前就有的问题,datetimev2就有这个问题,不在这个pr解决。 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
