westonpace commented on issue #34809:
URL: https://github.com/apache/arrow/issues/34809#issuecomment-1492245840
I'm unable to reproduce this. I'm attaching the `test.arrow` file that gets
created when I run your code (zipped so that github will allow it). This file
is readable in python just fine:
```
>>> import pyarrow.ipc as ipc
>>> with ipc.RecordBatchFileReader("test.arrow") as f:
... f.read_all()
...
pyarrow.Table
col1: struct<field1: string not null, field2: int64 not null> not null
child 0, field1: string not null
child 1, field2: int64 not null
----
col1: [
-- is_valid: all not null
-- child 0 type: string
["angel","bobby","charlie"]
-- child 1 type: int64
[1,2,3]]
>>> import pyarrow.feather as feather
[test.arrow.zip](https://github.com/apache/arrow/files/11124084/test.arrow.zip)
>>> feather.read_feather("test.arrow")
col1
0 {'field1': 'angel', 'field2': 1}
1 {'field1': 'bobby', 'field2': 2}
2 {'field1': 'charlie', 'field2': 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]