| 426 | } |
| 427 | |
| 428 | Status Consume(compute::ExecBatch batch) override { |
| 429 | ARROW_ASSIGN_OR_RAISE(std::shared_ptr<RecordBatch> record_batch, |
| 430 | batch.ToRecordBatch(schema_)); |
| 431 | return WriteNextBatch(std::move(record_batch), batch.guarantee); |
| 432 | } |
| 433 | |
| 434 | Future<> Finish() override { |
| 435 | dataset_writer_->Finish(); |
nothing calls this directly
no test coverage detected