From f5b52131377a26c41fb141fdeaec641da6e1f49b Mon Sep 17 00:00:00 2001 From: "Jorge C. Leitao" Date: Mon, 29 Nov 2021 19:07:47 +0000 Subject: [PATCH] Added Send+Sync to `Filter`. --- src/compute/filter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,