(&self, predicate: &BooleanArray)
| 331 | |
| 332 | impl ZipImpl for FallbackImpl { |
| 333 | fn create_output(&self, predicate: &BooleanArray) -> Result<ArrayRef, ArrowError> { |
| 334 | zip_impl(predicate, &self.truthy, true, &self.falsy, true) |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | struct PrimitiveScalarImpl<T: ArrowPrimitiveType> { |
no test coverage detected