| 719 | } // namespace |
| 720 | |
| 721 | Status WriteCSV(const Table& table, const WriteOptions& options, |
| 722 | arrow::io::OutputStream* output) { |
| 723 | ARROW_ASSIGN_OR_RAISE(auto writer, MakeCSVWriter(output, table.schema(), options)); |
| 724 | RETURN_NOT_OK(writer->WriteTable(table)); |
| 725 | return writer->Close(); |
| 726 | } |
| 727 | |
| 728 | Status WriteCSV(const RecordBatch& batch, const WriteOptions& options, |
| 729 | arrow::io::OutputStream* output) { |