Closed galipremsagar closed 5 months ago
Related to #5014
This issue has been marked stale due to no recent activity in the past 30d. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. This issue will be marked rotten if there is no activity in the next 60d.
This issue has been labeled inactive-90d
due to no recent activity in the past 90 days. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed.
This works now:
In [92]: >>> lhs = cudf.DataFrame(
...: ... {"a":[2, 3, 1], "b":[3, 4, 2]}).set_index(['a', 'b']
...: ... ).index
In [93]: >>> rhs = cudf.DataFrame({"a":[1, 4, 3]}).set_index('a').index
In [94]: >>> lhs.join(rhs, how='inner')
Out[94]:
MultiIndex([(3, 4),
(1, 2)],
names=['a', 'b'])
Describe the bug While performing a join/merge on two Index objects which have a common name in both of them there seems to be an error. This is a regression as the below example used to work in earlier versions of cudf.
Steps/Code to reproduce bug
Expected behavior
Environment overview (please complete the following information)
Environment details Please run and paste the output of the
cudf/print_env.sh
script here, to gather any other relevant environment detailsClick here to see environment details
Additional context Add any other context about the problem here.