| 199 | // |
| 200 | |
| 201 | std::shared_ptr<FileWriteOptions> IpcFileFormat::DefaultWriteOptions() { |
| 202 | std::shared_ptr<IpcFileWriteOptions> ipc_options( |
| 203 | new IpcFileWriteOptions(shared_from_this())); |
| 204 | |
| 205 | ipc_options->options = |
| 206 | std::make_shared<ipc::IpcWriteOptions>(ipc::IpcWriteOptions::Defaults()); |
| 207 | return ipc_options; |
| 208 | } |
| 209 | |
| 210 | Result<std::shared_ptr<FileWriter>> IpcFileFormat::MakeWriter( |
| 211 | std::shared_ptr<io::OutputStream> destination, std::shared_ptr<Schema> schema, |
nothing calls this directly
no test coverage detected