paleolimbot commented on issue #620:
URL:
https://github.com/apache/arrow-nanoarrow/issues/620#issuecomment-3097194264
Yes, we haven't gotten to that yet. The workaround is to create the array
from buffers:
```python
import nanoarrow as na
inner = na.array(range(24), na.int32())
c_array = na.c_array_from_buffers(
na.fixed_size_list(na.int32(), 6), 4, buffers=[], children=[inner]
)
na.array(c_array)
#> nanoarrow.Array<fixed_size_list(6)<item: int32>>[4]
#> [0, 1, 2, 3, 4, 5]
#> [6, 7, 8, 9, 10, 11]
#> [12, 13, 14, 15, 16, 17]
#> [18, 19, 20, 21, 22, 23]
```
--
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]