infzo commented on issue #35703:
URL: https://github.com/apache/arrow/issues/35703#issuecomment-1559161862
> `writer.close` closes both halves of the connection (yes, this is
confusing). You probably want `writer.done_writing` instead. This should work:
>
> ```python
> with writer:
> writer.write_table(data)
> writer.done_writing()
> print(f'result = {reader.read()}')
> ```
Thank you for your advice. It does work.
--
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]