(tz: &str)
| 623 | } |
| 624 | |
| 625 | fn format_timezone(tz: &str) -> Result<String, ArrowError> { |
| 626 | let array = Arc::new(TimestampSecondArray::from(vec![Some(11111111), None]).with_timezone(tz)); |
| 627 | Ok(pretty_format_columns("f", &[array])?.to_string()) |
| 628 | } |
| 629 | |
| 630 | #[test] |
| 631 | fn test_pretty_format_timestamp_second_with_utc_timezone() { |
no test coverage detected