tustvold commented on code in PR #2932:
URL: https://github.com/apache/arrow-rs/pull/2932#discussion_r1005355181
##########
arrow/src/compute/kernels/cast.rs:
##########
@@ -3853,8 +3853,8 @@ mod tests {
let b = cast(&array, &DataType::Utf8).unwrap();
let c = b.as_any().downcast_ref::<StringArray>().unwrap();
assert_eq!(&DataType::Utf8, c.data_type());
- assert_eq!("1997-05-19 00:00:00.005", c.value(0));
- assert_eq!("2018-12-25 00:00:00.001", c.value(1));
+ assert_eq!("1997-05-19 00:00:00.005 +00:00", c.value(0));
+ assert_eq!("2018-12-25 00:00:00.001 +00:00", c.value(1));
Review Comment:
It appears to output
https://docs.rs/chrono/latest/chrono/struct.DateTime.html#method.to_rfc2822
which has spaces
Edit: it actually outputs some chrono default format, we should potentially
file a ticket to switch to using an actual standard :thinking:
https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=2f37a847f2064109da31fca9845a0d8b
--
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]