| 1601 | } |
| 1602 | |
| 1603 | Result<std::shared_ptr<FileWriter>> MakeWriter( |
| 1604 | std::shared_ptr<io::OutputStream> destination, std::shared_ptr<Schema> schema, |
| 1605 | std::shared_ptr<FileWriteOptions> options, |
| 1606 | fs::FileLocator destination_locator) const override { |
| 1607 | return Status::NotImplemented("writing fragment of DummyFileFormat"); |
| 1608 | } |
| 1609 | |
| 1610 | std::shared_ptr<FileWriteOptions> DefaultWriteOptions() override { return nullptr; } |
| 1611 |
nothing calls this directly
no test coverage detected