-
Notifications
You must be signed in to change notification settings - Fork 916
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
Remove Table class #9315
Remove Table class #9315
Conversation
678a53e
to
4989279
Compare
rerun tests |
1 similar comment
rerun tests |
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.
Another step to a cleaner architecture. Looks great.
Codecov Report
@@ Coverage Diff @@
## branch-21.12 #9315 +/- ##
================================================
- Coverage 10.79% 10.76% -0.03%
================================================
Files 116 116
Lines 18869 19419 +550
================================================
+ Hits 2036 2090 +54
- Misses 16833 17329 +496
Continue to review full report at Codecov.
|
@gpucibot merge |
This PR updates cuspatial to match the changes in rapidsai/cudf#9315. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Paul Taylor (https://github.com/trxcllnt) URL: #455
This PR moves the remaining logic from the Table class into the Frame class and removes the Table class entirely. In the long term we should move away from passing Frame objects into Cython functions since we should instead be able to make do with an iterable of columns, but changing the calling convention for our Cython APIs is left for future PRs. Once this one is merged, we can modify individual Cython APIs without having to touch any of the others.