Function arrow::compute::kernels::nullif::nullif

source ·
pub fn nullif(
    left: &dyn Array,
    right: &BooleanArray
) -> Result<Arc<dyn Array>, ArrowError>
Expand description

Copies original array, setting validity bit to false if a secondary comparison boolean array is set to true

Typically used to implement NULLIF.