Moelf opened a new pull request, #419:
URL: https://github.com/apache/arrow-julia/pull/419
fix #411
Setup:
```julia
julia> using Arrow
julia> df = (; x = [[0x01, 0x02], UInt8[], [0x03]])
julia> Arrow.write("/tmp/julia.feather", df)
"/tmp/julia.feather"
```
Before:
```python
In [3]: pyarrow.feather.read_table("/tmp/julia.feather")["x"]
Out[3]:
<pyarrow.lib.ChunkedArray object at 0x7fb2994c86d0>
[
[
0102,
,
03
]
]
```
After:
```python
In [39]: pyarrow.feather.read_table("/tmp/julia.feather")["x"]
Out[39]:
<pyarrow.lib.ChunkedArray object at 0x7f4568b376a0>
[
[
[
1,
2
],
[],
[
3
]
]
]
```
--
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]