diff --git a/src/compute/filter.rs b/src/compute/filter.rs index b14aa337035..a5e0f61f9be 100644 --- a/src/compute/filter.rs +++ b/src/compute/filter.rs @@ -6,7 +6,7 @@ use crate::{array::*, types::NativeType}; use crate::{buffer::MutableBuffer, error::Result}; /// Function that can filter arbitrary arrays -pub type Filter<'a> = Box Box + 'a>; +pub type Filter<'a> = Box Box + 'a + Send + Sync>; fn filter_nonnull_primitive( array: &PrimitiveArray,