-
Notifications
You must be signed in to change notification settings - Fork 925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[REVIEW] Adding support for explode to cuDF #7140
[REVIEW] Adding support for explode to cuDF #7140
Conversation
Recommend using a draft PR for WIP, rather than "[WIP]" in the title. This way reviewers don't get notified before you are ready. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks looks good to me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't handle sliced columns.
I believe this is fixed now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great.
@nvdbaranec will wait for you to review again before merging. |
In a follow up PR we should plumb this into Python as |
@gpucibot merge |
This PR is to add Java interface for the new API '`explode`', along with its unit tests. This PR depends on the PR #7140 . Authors: - Liangcai Li (@firestarman) Approvers: - Jason Lowe (@jlowe) - Robert (Bobby) Evans (@revans2) URL: #7151
This is an operation that expands lists into rows and duplicates the existing rows from other columns. Explanation can be found in the issue #6151
partially fixes #6151
Missing pos_explode support required to completely close out #6151