pitrou commented on PR #41700: URL: https://github.com/apache/arrow/pull/41700#issuecomment-2230830712
Another issue is this reproducer for the C/GLib failures: ```python >>> i1 = pa.array([1,0], pa.int16()) >>> i2 = pa.array([2], pa.int16()) >>> indices = pa.chunked_array([i1, i2]) >>> pa.array([1,0,2], pa.int16()).take(indices) <pyarrow.lib.ChunkedArray object at 0x7fa24b1473d0> [ <Invalid array: Missing values buffer in non-empty fixed-width array>, <Invalid array: Missing values buffer in non-empty fixed-width array> ] ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
