Function arrow::compute::kernels::filter::filter_record_batch[][src]

pub fn filter_record_batch(
    record_batch: &RecordBatch,
    filter: &BooleanArray
) -> Result<RecordBatch>
Expand description

Returns a new RecordBatch with arrays containing only values matching the filter. WARNING: the nulls of filter are ignored and the value on its slot is considered. Therefore, it is considered undefined behavior to pass filter with null values.