-
Notifications
You must be signed in to change notification settings - Fork 853
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 StringViewArray
implementation and layout and basic construction + tests
#5469
Closed
Tracked by
#5374
Comments
31 tasks
alamb
changed the title
Add Mar 4, 2024
Array
implementations and layout and basic constructionUtf8ViewArray
and BinaryViewArray
implementations and layout and basic construction
alamb
changed the title
Add
Add Mar 4, 2024
Utf8ViewArray
and BinaryViewArray
implementations and layout and basic constructionUtf8ViewArray
implementation and layout and basic construction
alamb
changed the title
Add
Add Mar 4, 2024
Utf8ViewArray
implementation and layout and basic constructionUtf8ViewArray
implementation and layout and basic construction + tests
alamb
changed the title
Add
Add Mar 4, 2024
Utf8ViewArray
implementation and layout and basic construction + testsStringViewArray
implementation and layout and basic construction + tests
Please assign me, thx :) |
Noce that #5470 is merged I think this ticket is unblocked and ready to go Note I think this ticket will be somewhat of a bottleneck. Once it is done I think we can start implementing other features in parallel (like IPC support, cast, filter, etc) |
|
|
7 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is part of the larger project to implement
StringViewArray
-- see #5374After #5468 we will next need to implement
StringViewArray
For inspiration I think you can look at #4585
(specifically
arrow-array/src/array/byte_view_array.rs
https://github.com/apache/arrow-rs/pull/4585/files#diff-160ecd8082d5d28081f01cdb08a898cb8f49b17149c7118bf96746ddaae24b4f)Basic tasks:
Utf8ViewArray
and implementArray
for it. This should follow the outline from Add StringViewArray and BinaryViewArray (#4253) #4585 and implement a similar API toStringArray
https://docs.rs/arrow/latest/arrow/array/type.StringArray.htmlnew()
andnew_unchecked
,value()
,is_null()
etc).Potentially: implement pretty printing for
Utf8ViewArray
viaArrayFormatter
, though this could be done as a separate ticket / PR.The text was updated successfully, but these errors were encountered: