Moelf opened a new issue, #411:
URL: https://github.com/apache/arrow-julia/issues/411
```julia
julia> using Arrow, DataFrames
julia> df = DataFrame(; x = [[0x01, 0x02], UInt8[], [0x03]])
3×1 DataFrame
Row │ x
│ Array…
─────┼───────────────────
1 │ UInt8[0x01, 0x02]
2 │ UInt8[]
3 │ UInt8[0x03]
julia> Arrow.write("/tmp/julia.feather", df)
"/tmp/julia.feather"
```
```python
In [1]: import pyarrow.feather
In [3]: pyarrow.feather.read_table("/tmp/julia.feather")["x"]
Out[3]:
<pyarrow.lib.ChunkedArray object at 0x7fb2994c86d0>
[
[
0102,
,
03
]
]
```
--
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]