| 126 | return Status::NotImplemented("Not needed for test"); |
| 127 | } |
| 128 | Result<std::shared_ptr<FileWriter>> MakeWriter( |
| 129 | std::shared_ptr<io::OutputStream> destination, std::shared_ptr<Schema> schema, |
| 130 | std::shared_ptr<FileWriteOptions> options, |
| 131 | fs::FileLocator destination_locator) const override { |
| 132 | return Status::NotImplemented("Not needed for test"); |
| 133 | } |
| 134 | std::shared_ptr<FileWriteOptions> DefaultWriteOptions() override { return nullptr; } |
| 135 | }; |
| 136 |
nothing calls this directly
no test coverage detected