[FEA] Update row_equality_comparator
to use null_equality
enum instead of bool
#9152
Labels
feature request
New feature or request
good first issue
Good for newcomers
libcudf
Affects libcudf (C++/CUDA) code.
Is your feature request related to a problem? Please describe.
The
row_equality_comparator
constructor currently accepts abool
to indicate if nulls are considered equal or not. In libcudf, we prefer to use scoped enums instead of bools and we already have anull_equality
enum for this exact purpose.Describe the solution you'd like
Update the
row_equality_comparator
to take anull_equality
enum argument in lieu of thebool
.The text was updated successfully, but these errors were encountered: