Skip to content

Commit 03af59f

Browse files
committed
clippy
1 parent 32ae39a commit 03af59f

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

native/core/src/execution/planner.rs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2887,21 +2887,6 @@ mod tests {
28872887
}
28882888
}
28892889

2890-
#[test]
2891-
fn test_create_array1() {
2892-
// Create two BooleanArrays
2893-
let a = BooleanArray::from(vec![Some(true), Some(false), None, Some(true)]);
2894-
let b = BooleanArray::from(vec![Some(false), Some(false), Some(true), None]);
2895-
2896-
// Compute OR
2897-
let result = or(&a, &b).unwrap();
2898-
2899-
// Print result
2900-
for i in 0..result.len() {
2901-
println!("Index {}: {:?}", i, result.value(i));
2902-
}
2903-
}
2904-
29052890
#[test]
29062891
fn test_create_array() {
29072892
let session_ctx = SessionContext::new();

0 commit comments

Comments
 (0)