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 964a076 commit f93da94Copy full SHA for f93da94
arrow-select/src/take.rs
@@ -424,8 +424,8 @@ fn take_native<T: ArrowNativeType, I: ArrowPrimitiveType>(
424
Some(v) => *v,
425
// SAFETY: idx<indices.len()
426
None => match unsafe { n.inner().value_unchecked(idx) } {
427
- true => T::default(),
428
- false => panic!("Out-of-bounds index {index:?}"),
+ false => T::default(),
+ true => panic!("Out-of-bounds index {index:?}"),
429
},
430
})
431
.collect(),
0 commit comments