-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #993 The `is_in` expression checks whether the values of a series are contained in a given list of items, and produces a series of boolean values as the results of this membership test. Changes: - Added a Literal Series so that Series can be passed into the expression - Added `is_in` expression and kernel - Added tests
- Loading branch information
Showing
27 changed files
with
599 additions
and
33 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
use crate::{ | ||
array::DataArray, | ||
datatypes::{ | ||
BinaryArray, BooleanArray, DaftIntegerType, DaftNumericType, Float32Array, Float64Array, | ||
NullArray, Utf8Array, | ||
}, | ||
DataType, | ||
}; | ||
|
||
use super::as_arrow::AsArrow; | ||
use super::{full::FullNull, DaftIsIn}; | ||
use crate::utils::hashable_float_wrapper::FloatWrapper; | ||
use common_error::DaftResult; | ||
use std::collections::{BTreeSet, HashSet}; | ||
|
||
macro_rules! collect_to_set_and_check_membership { | ||
($self:expr, $rhs:expr) => {{ | ||
let set = $rhs | ||
.as_arrow() | ||
.iter() | ||
.filter_map(|item| item) | ||
.collect::<HashSet<_>>(); | ||
let result = $self | ||
.as_arrow() | ||
.iter() | ||
.map(|option| option.and_then(|value| Some(set.contains(&value)))); | ||
Ok(BooleanArray::from_iter($self.name(), result)) | ||
}}; | ||
} | ||
|
||
impl<T> DaftIsIn<&DataArray<T>> for DataArray<T> | ||
where | ||
T: DaftIntegerType, | ||
<T as DaftNumericType>::Native: Ord, | ||
<T as DaftNumericType>::Native: std::hash::Hash, | ||
<T as DaftNumericType>::Native: std::cmp::Eq, | ||
{ | ||
type Output = DaftResult<BooleanArray>; | ||
|
||
fn is_in(&self, rhs: &DataArray<T>) -> Self::Output { | ||
collect_to_set_and_check_membership!(self, rhs) | ||
} | ||
} | ||
|
||
macro_rules! impl_is_in_floating_array { | ||
($arr:ident, $T:ident) => { | ||
impl DaftIsIn<&$arr> for $arr { | ||
type Output = DaftResult<BooleanArray>; | ||
|
||
fn is_in(&self, rhs: &$arr) -> Self::Output { | ||
let set = rhs | ||
.as_arrow() | ||
.iter() | ||
.filter_map(|item| item.map(|value| FloatWrapper(*value))) | ||
.collect::<BTreeSet<FloatWrapper<$T>>>(); | ||
let result = self.as_arrow().iter().map(|option| { | ||
option.and_then(|value| Some(set.contains(&FloatWrapper(*value)))) | ||
}); | ||
Ok(BooleanArray::from_iter(self.name(), result)) | ||
} | ||
} | ||
}; | ||
} | ||
impl_is_in_floating_array!(Float32Array, f32); | ||
impl_is_in_floating_array!(Float64Array, f64); | ||
|
||
macro_rules! impl_is_in_non_numeric_array { | ||
($arr:ident) => { | ||
impl DaftIsIn<&$arr> for $arr { | ||
type Output = DaftResult<BooleanArray>; | ||
|
||
fn is_in(&self, rhs: &$arr) -> Self::Output { | ||
collect_to_set_and_check_membership!(self, rhs) | ||
} | ||
} | ||
}; | ||
} | ||
impl_is_in_non_numeric_array!(BooleanArray); | ||
impl_is_in_non_numeric_array!(Utf8Array); | ||
impl_is_in_non_numeric_array!(BinaryArray); | ||
|
||
impl DaftIsIn<&NullArray> for NullArray { | ||
type Output = DaftResult<BooleanArray>; | ||
|
||
fn is_in(&self, _rhs: &NullArray) -> Self::Output { | ||
// If self and rhs are null array then return a full null array | ||
Ok(BooleanArray::full_null( | ||
self.name(), | ||
&DataType::Boolean, | ||
self.len(), | ||
)) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.