| 1193 | } |
| 1194 | |
| 1195 | Status WriteTable(const RecordBatchVector& batches) { |
| 1196 | num_batches_written_ += static_cast<int>(batches.size()); |
| 1197 | ARROW_ASSIGN_OR_RAISE(auto table, Table::FromRecordBatches(batches)); |
| 1198 | return writer_->WriteTable(*table); |
| 1199 | } |
| 1200 | |
| 1201 | Status Finish(WriteStats* out_stats = nullptr) { |
| 1202 | RETURN_NOT_OK(writer_->Close()); |
no test coverage detected