| 1349 | } |
| 1350 | |
| 1351 | Status WriteTable(const RecordBatchVector& batches) { |
| 1352 | ARROW_ASSIGN_OR_RAISE(auto table, Table::FromRecordBatches(batches)); |
| 1353 | return writer_->WriteTable(*table); |
| 1354 | } |
| 1355 | |
| 1356 | Status Finish(WriteStats* out_stats = nullptr) { |
| 1357 | RETURN_NOT_OK(writer_->Close()); |
nothing calls this directly
no test coverage detected