Sebastien Binet created ARROW-5387: -------------------------------------- Summary: [Go] properly handle sub-slice of List Key: ARROW-5387 URL: https://issues.apache.org/jira/browse/ARROW-5387 Project: Apache Arrow Issue Type: Bug Components: Go Reporter: Sebastien Binet
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]]` -- This message was sent by Atlassian JIRA (v7.6.3#76005)