| 72 | } |
| 73 | |
| 74 | Future<std::optional<int64_t>> Fragment::CountRows(compute::Expression, |
| 75 | const std::shared_ptr<ScanOptions>&) { |
| 76 | return Future<std::optional<int64_t>>::MakeFinished(std::nullopt); |
| 77 | } |
| 78 | |
| 79 | Status Fragment::ClearCachedMetadata() { |
| 80 | auto lock = physical_schema_mutex_.Lock(); |
nothing calls this directly
no test coverage detected