| 353 | } // namespace |
| 354 | |
| 355 | CsvFileFormat::CsvFileFormat() : FileFormat(std::make_shared<CsvFragmentScanOptions>()) {} |
| 356 | |
| 357 | bool CsvFileFormat::Equals(const FileFormat& format) const { |
| 358 | if (type_name() != format.type_name()) return false; |
no outgoing calls