Commits

Bryan Cutler authored 8c9890c3731
ARROW-2742: [Python] Allow Table.from_batches to use iterator of record batches This changes `pyarrow.Table.from_batches` from requiring a list of RecordBatches to being able to accept an iterator by checking the resulting vector size instead of the Python list len. Added a test that using an iterator of RecordBatches creates the expected Table. Author: Bryan Cutler <cutlerb@gmail.com> Closes #2168 from BryanCutler/python-Table-from_batches-iterator-ARROW-2742 and squashes the following commits: 99d1d5b <Bryan Cutler> fixed wording e6407c8 <Bryan Cutler> Table.from_batches can use iterator