| 123 | bool Equals(const FileFormat& other) const override { return false; } |
| 124 | Result<bool> IsSupported(const FileSource& source) const override { return true; } |
| 125 | Result<std::shared_ptr<Schema>> Inspect(const FileSource& source) const override { |
| 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, |
nothing calls this directly
no test coverage detected