alamb commented on issue #7957: URL: https://github.com/apache/datafusion/issues/7957#issuecomment-2246260791
Maybe we could add a `filter_multi` kernel along side https://docs.rs/arrow/latest/arrow/compute/kernels/filter/fn.filter.html The signature would be like ```rust /// filters paris of arrays / predicates into a single output arrauy pub fn filter_multi( input: impl IntoIterator<Item = (&dyn Array, &BooleanArray>) ) -> Result<Arc<dyn Array>, ArrowError> ``` And then the internal machinery could be the same -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
