From bc18faeb0dbfcfb1a85ac7e14d360c3a4d21c30b Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Fri, 24 May 2024 05:47:10 -0600 Subject: [PATCH] remove TODO comment now that issue has been filed --- core/src/execution/datafusion/expressions/cast.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/src/execution/datafusion/expressions/cast.rs b/core/src/execution/datafusion/expressions/cast.rs index c95143c87..bd54c60a0 100644 --- a/core/src/execution/datafusion/expressions/cast.rs +++ b/core/src/execution/datafusion/expressions/cast.rs @@ -661,8 +661,6 @@ impl Cast { DataType::Utf8 => matches!(to_type, DataType::Binary), DataType::Date32 => matches!(to_type, DataType::Utf8), DataType::Timestamp(_, _) => { - // TODO need to add tests to see if we really do support all - // timestamp to timestamp conversions matches!( to_type, DataType::Int64 | DataType::Date32 | DataType::Utf8 | DataType::Timestamp(_, _)