[FEA] Support null_equality
parameter in cudf::contains
#11041
Labels
feature request
New feature or request
null_equality
parameter in cudf::contains
#11041
The current implementation of
cudf::contains(column_view const& haystack, column_view const& needles)
doesn't supportnull_equality
option. As such, any null row in the input needles column will result in a null in the corresponding output row. If we want to actually check for contains/existence for null rows fromneedles
, we have to work around somehow.It is better to support
null_equality
so we call specify whether a null row fromneedles
will result in a null output row, or will be actually checked for existence inhaystack
. This is necessary to support callingcudf::contains
insemi_anti_join
implementation (#11037).The text was updated successfully, but these errors were encountered: