llama90 commented on issue #41758:
URL: https://github.com/apache/arrow/issues/41758#issuecomment-2122902881

   Would you like to try it this way?
   
   ```python
   import pyarrow as pa
   
   tbl = pa.Table.from_pydict({"x": [11, 12], "y": ["c", "d"]})
   batches = tbl.to_batches()
   reader = pa.RecordBatchReader.from_batches(tbl.schema, batches)
   
   print(reader.read_all())
   ```
   
   Does this code match your intention, or is it not quite right?


-- 
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]

Reply via email to