We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08890b3 commit 150d2b1Copy full SHA for 150d2b1
datafusion/src/physical_plan/expressions/cast.rs
@@ -222,6 +222,7 @@ mod tests {
222
223
#[test]
224
fn test_cast_numeric_to_decimal() -> Result<()> {
225
+
226
// int8
227
generic_test_cast!(
228
Int8Array,
@@ -345,22 +346,6 @@ mod tests {
345
346
347
348
fn test_cast_i32_u32() -> Result<()> {
- 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
-
364
365
Int32Array,
366
DataType::Int32,
0 commit comments