We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
consider an array.List with the following content:
array.List
[[0 1 2] (null) [3 4 5 6]]
sub-slicing it with array.NewSlice(arr, 1, 3), we get:
array.NewSlice(arr, 1, 3)
[(null) []] instead of [(null) [3 4 5 6]]
[(null) []]
[(null) [3 4 5 6]]
Reporter: Sebastien Binet / @sbinet
Note: This issue was originally created as ARROW-5387. Please see the migration documentation for further details.
The text was updated successfully, but these errors were encountered:
Sebastien Binet / @sbinet: Issue resolved by pull request 4360 #4360
Sorry, something went wrong.
No branches or pull requests
consider an
array.List
with the following content:[[0 1 2] (null) [3 4 5 6]]
sub-slicing it with
array.NewSlice(arr, 1, 3)
, we get:[(null) []]
instead of[(null) [3 4 5 6]]
Reporter: Sebastien Binet / @sbinet
PRs and other links:
Note: This issue was originally created as ARROW-5387. Please see the migration documentation for further details.
The text was updated successfully, but these errors were encountered: