Function datafusion_python::datafusion_common::arrow::compute::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.