| 144 | } |
| 145 | |
| 146 | Future<std::optional<int64_t>> FileFormat::CountRows( |
| 147 | const std::shared_ptr<FileFragment>&, compute::Expression, |
| 148 | const std::shared_ptr<ScanOptions>&) { |
| 149 | return Future<std::optional<int64_t>>::MakeFinished(std::nullopt); |
| 150 | } |
| 151 | |
| 152 | Future<std::shared_ptr<InspectedFragment>> FileFormat::InspectFragment( |
| 153 | const FileSource& source, const FragmentScanOptions* format_options, |
nothing calls this directly
no test coverage detected