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 32ae39a commit 03af59fCopy full SHA for 03af59f
native/core/src/execution/planner.rs
@@ -2887,21 +2887,6 @@ mod tests {
2887
}
2888
2889
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
2905
#[test]
2906
fn test_create_array() {
2907
let session_ctx = SessionContext::new();
0 commit comments