alamb opened a new pull request #9263:
URL: https://github.com/apache/arrow/pull/9263
I found this while removing `test::format_batches` (PR to come shortly); The
Record batch pretty printing code was printing numbers rather than dates.
Before this PR, when date/time columns were printed they were printed as
numbers:
```
[
"+----------+",
"| f |",
"+----------+",
"| 11111111 |",
"| |",
"+----------+",
]
```
After this PR, they are printed (via chrono) as dates:
```
[
"+---------------------+",
"| f |",
"+---------------------+",
"| 1970-05-09 14:25:11 |",
"| |",
"+---------------------+",
]
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]