rok commented on issue #34316:
URL: https://github.com/apache/arrow/issues/34316#issuecomment-1442416131
This works:
```
import pyarrow as pa
array = pa.array([1, 2, 3, 4, 5],
mask=pa.array([True, False, True, False, True]))
pa.FixedSizeListArray.from_arrays(array, 1)
```
I assume you're looking to store multidimensional arrays? These discussions
might be relevant: #33925 #8510
--
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]