diff --git a/datafusion/src/physical_plan/expressions/cast.rs b/datafusion/src/physical_plan/expressions/cast.rs index 4449716f9d307..8021a5b1858b3 100644 --- a/datafusion/src/physical_plan/expressions/cast.rs +++ b/datafusion/src/physical_plan/expressions/cast.rs @@ -222,6 +222,7 @@ mod tests { #[test] fn test_cast_numeric_to_decimal() -> Result<()> { + // int8 generic_test_cast!( Int8Array, @@ -345,22 +346,6 @@ mod tests { #[test] fn test_cast_i32_u32() -> Result<()> { - generic_test_cast!( - Int32Array, - DataType::Int32, - vec![1, 2, 3, 4, 5], - UInt32Array, - DataType::UInt32, - vec![ - Some(1_u32), - Some(2_u32), - Some(3_u32), - Some(4_u32), - Some(5_u32) - ], - DEFAULT_DATAFUSION_CAST_OPTIONS - ); - generic_test_cast!( Int32Array, DataType::Int32,