jonkeane commented on pull request #11592: URL: https://github.com/apache/arrow/pull/11592#issuecomment-958021000
As for DATE64, as far as I can tell those map back on to dates (even though they have ms precision): ``` > Scalar$create(1L * 1000*60*60*24, int64())$cast(date64()) Scalar 1970-01-02 > Scalar$create(1L * 1000*60*60*24 + 100, int64())$cast(date64()) Scalar 1970-01-02 > Scalar$create(1L * 1000*60*60*24 * 2, int64())$cast(date64()) Scalar 1970-01-03 ``` -- 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]
