Skip to content

Commit 9f8f3be

Browse files
committed
remove useless code
1 parent 08890b3 commit 9f8f3be

File tree

1 file changed

+0
-16
lines changed
  • datafusion/src/physical_plan/expressions

1 file changed

+0
-16
lines changed

datafusion/src/physical_plan/expressions/cast.rs

-16
Original file line numberDiff line numberDiff line change
@@ -345,22 +345,6 @@ mod tests {
345345

346346
#[test]
347347
fn test_cast_i32_u32() -> Result<()> {
348-
generic_test_cast!(
349-
Int32Array,
350-
DataType::Int32,
351-
vec![1, 2, 3, 4, 5],
352-
UInt32Array,
353-
DataType::UInt32,
354-
vec![
355-
Some(1_u32),
356-
Some(2_u32),
357-
Some(3_u32),
358-
Some(4_u32),
359-
Some(5_u32)
360-
],
361-
DEFAULT_DATAFUSION_CAST_OPTIONS
362-
);
363-
364348
generic_test_cast!(
365349
Int32Array,
366350
DataType::Int32,

0 commit comments

Comments
 (0)