This is an automated email from the ASF dual-hosted git repository. parthc pushed a commit to branch cast-timestamp-tz in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
commit 61567d6503a8a810db5de9d33ac27aa53abebaf2 Author: Parth Chandra <[email protected]> AuthorDate: Wed Mar 18 16:42:02 2026 -0700 format --- native/spark-expr/src/conversion_funcs/string.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/native/spark-expr/src/conversion_funcs/string.rs b/native/spark-expr/src/conversion_funcs/string.rs index fc78456d0..1fb1d300a 100644 --- a/native/spark-expr/src/conversion_funcs/string.rs +++ b/native/spark-expr/src/conversion_funcs/string.rs @@ -1660,9 +1660,11 @@ mod tests { assert!(timestamp_parser("-0001", EvalMode::Legacy, tz) .unwrap() .is_some()); - assert!(timestamp_parser("-0001-01-01T12:34:56", EvalMode::Legacy, tz) - .unwrap() - .is_some()); + assert!( + timestamp_parser("-0001-01-01T12:34:56", EvalMode::Legacy, tz) + .unwrap() + .is_some() + ); } #[test] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
