You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Using cudf::hash_join to calculate the output row count for a join involving struct columns results in the following exception being thrown.
cuDF failure at: ../include/cudf/table/row_operators.cuh:231: Mismatched number of columns.
It looks like the build table is flattened when the hash is built but the probe table isn't also flattened when computing the output size.
Steps/Code to reproduce bug
Apply the following patch and run the libcudf join tests.
Describe the bug
Using
cudf::hash_join
to calculate the output row count for a join involving struct columns results in the following exception being thrown.It looks like the build table is flattened when the hash is built but the probe table isn't also flattened when computing the output size.
Steps/Code to reproduce bug
Apply the following patch and run the libcudf join tests.
Expected behavior
The test above should pass.
The text was updated successfully, but these errors were encountered: