| 1583 | std::string type_name() const override { return "dummy"; } |
| 1584 | |
| 1585 | bool Equals(const FileFormat& other) const override { |
| 1586 | return type_name() == other.type_name() && |
| 1587 | schema_->Equals(checked_cast<const DummyFileFormat&>(other).schema_); |
| 1588 | } |
| 1589 | |
| 1590 | Result<bool> IsSupported(const FileSource& source) const override { return true; } |
| 1591 |
no test coverage detected