From 7843448d2a9d899d5ad055ba503fdd60b066aacd Mon Sep 17 00:00:00 2001 From: Kaifeng Zheng Date: Thu, 12 Dec 2024 16:53:59 +0800 Subject: [PATCH] drop todo message --- arrow-cast/src/cast/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/arrow-cast/src/cast/mod.rs b/arrow-cast/src/cast/mod.rs index 8b07f847c2e3..5c892783d4a8 100644 --- a/arrow-cast/src/cast/mod.rs +++ b/arrow-cast/src/cast/mod.rs @@ -5258,9 +5258,6 @@ mod tests { assert_eq!("2018-12-25T00:00:00", c.value(1)); } - // Cast Timestamp to Utf8View is not supported yet - // TODO: Implement casting from Timestamp to Utf8View - // https://github.com/apache/arrow-rs/issues/6734 macro_rules! assert_cast_timestamp_to_string { ($array:expr, $datatype:expr, $output_array_type: ty, $expected:expr) => {{ let out = cast(&$array, &$datatype).unwrap();