| 2126 | } |
| 2127 | |
| 2128 | Result<std::shared_ptr<Table>> RecordBatchFileReader::ToTable() { |
| 2129 | ARROW_ASSIGN_OR_RAISE(auto batches, ToRecordBatches()); |
| 2130 | return Table::FromRecordBatches(schema(), std::move(batches)); |
| 2131 | } |
| 2132 | |
| 2133 | Status Listener::OnEOS() { return Status::OK(); } |
| 2134 |