| 236 | batch_writer_(std::move(writer)) {} |
| 237 | |
| 238 | Status IpcFileWriter::Write(const std::shared_ptr<RecordBatch>& batch) { |
| 239 | return batch_writer_->WriteRecordBatch(*batch); |
| 240 | } |
| 241 | |
| 242 | Future<> IpcFileWriter::FinishInternal() { |
| 243 | return DeferNotOk(destination_locator_.filesystem->io_context().executor()->Submit( |
nothing calls this directly
no test coverage detected