| 2115 | } |
| 2116 | |
| 2117 | Result<std::shared_ptr<Table>> RecordBatchFileReader::ToTable() { |
| 2118 | ARROW_ASSIGN_OR_RAISE(auto batches, ToRecordBatches()); |
| 2119 | return Table::FromRecordBatches(schema(), std::move(batches)); |
| 2120 | } |
| 2121 | |
| 2122 | Status Listener::OnEOS() { return Status::OK(); } |
| 2123 |