Skip to content
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

Add in JVM extractListElement and stringSplitRecord [skip-ci] #5881

Merged
merged 35 commits into from
Aug 10, 2020
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
13da609
LIST Support for ColumnVector
kuhushukla Jul 22, 2020
042dbd0
Minor fixes
kuhushukla Jul 31, 2020
d135a01
Remove stealView and add NestedColumnVector
kuhushukla Aug 1, 2020
2112204
New prototype builder with rework on getList and DataType
kuhushukla Aug 2, 2020
5914f11
Cleanup Old Builder
kuhushukla Aug 2, 2020
ff1b435
Test cleanup and some asserts
kuhushukla Aug 3, 2020
d8b3c6d
copyToHost is recursive but has some minor leaks
kuhushukla Aug 3, 2020
3ad7727
Fix leaks and copyToDevice recursive
kuhushukla Aug 4, 2020
f10b41f
Fix nullCount and associated failing test
kuhushukla Aug 4, 2020
edfc669
Fix empty string list
kuhushukla Aug 4, 2020
1122a47
remove debug and modify test
kuhushukla Aug 4, 2020
81c6625
Reformat tests and also comment code for empty asList for discussion
kuhushukla Aug 5, 2020
3ca1e28
Move data down to respective columns and allow childIndex for future …
kuhushukla Aug 6, 2020
1399064
Fix numChildren and modify getChildCvPointer to take childIndex
kuhushukla Aug 6, 2020
85def30
Add builder append for other dtypes plus basic tests
kuhushukla Aug 6, 2020
4a8d442
Merge branch 'nested_type_fin' of github.com:kuhushukla/cudf into nes…
revans2 Aug 7, 2020
3f64fbc
Address review comments
kuhushukla Aug 7, 2020
506d69a
Minor review comment changes
kuhushukla Aug 7, 2020
6237253
Minor nits and docs
kuhushukla Aug 7, 2020
f1012ba
Merge remote-tracking branch 'refs/remotes/origin/branch-0.15' into n…
kuhushukla Aug 7, 2020
8506d0a
Basic List Extract and StringSplit support
revans2 Aug 4, 2020
5050789
Updated Changelog
revans2 Aug 7, 2020
6c0e1a7
Addressed review comments
revans2 Aug 7, 2020
0a9d977
Merge branch 'nested_type_fin' of github.com:kuhushukla/cudf into jav…
revans2 Aug 7, 2020
0fcf26e
Fix CV leak and other review comments
kuhushukla Aug 7, 2020
d60a1f9
Add changelog and add some more docs
kuhushukla Aug 7, 2020
6b052d6
Review comments and nits part 3
kuhushukla Aug 7, 2020
6277256
Review comments and nits part 4
kuhushukla Aug 7, 2020
a01e947
Remove unnecessary newlines
kuhushukla Aug 7, 2020
09d0eca
Merge branch 'nested_type_fin' of github.com:kuhushukla/cudf into jav…
revans2 Aug 7, 2020
089208f
Rename ColumnViewPointerAccess and its members
kuhushukla Aug 7, 2020
913b6d2
Modify getNativeNumChildren to return 0 for type = STRING
kuhushukla Aug 7, 2020
29039b2
Nits
kuhushukla Aug 10, 2020
f66e412
Merge remote-tracking branch 'refs/remotes/origin/branch-0.15' into n…
kuhushukla Aug 10, 2020
3c6b054
Merge branch 'nested_type_fin' of github.com:kuhushukla/cudf into jav…
revans2 Aug 10, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@
- PR #5853 Disable `fixed_point` for use in `copy_if`
- PR #5854 Raise informative error in `DataFrame.iterrows` and `DataFrame.itertuples`
- PR #5863 Explicitly require `ucx-py` on CI
- PR #5881 Add in JVM extractListElement and stringSplitRecord

## Bug Fixes

Expand Down
Loading