waitingkuo commented on issue #3166: URL: https://github.com/apache/arrow-datafusion/issues/3166#issuecomment-1215866825
@alamb should we use [IntervalMonthDayNano](https://github.com/apache/arrow-datafusion/blob/master/datafusion/common/src/scalar.rs#L104) insead? this is what we have for now ``` /// Number of elapsed whole months IntervalYearMonth(Option<i32>), /// Number of elapsed days and milliseconds (no leap seconds) /// stored as 2 contiguous 32-bit signed integers IntervalDayTime(Option<i64>), /// A triple of the number of elapsed months, days, and nanoseconds. /// Months and days are encoded as 32-bit signed integers. /// Nanoseconds is encoded as a 64-bit signed integer (no leap seconds). IntervalMonthDayNano(Option<i128>), ``` -- 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]
