| 202 | std::shared_ptr<RowGroupReader> RowGroup(int row_group_index) override; |
| 203 | |
| 204 | Result<std::shared_ptr<Table>> ReadTable( |
| 205 | const std::vector<int>& column_indices) override { |
| 206 | return ReadRowGroups(Iota(reader_->metadata()->num_row_groups()), column_indices); |
| 207 | } |
| 208 | |
| 209 | Status GetFieldReader(int i, |
| 210 | const std::shared_ptr<std::unordered_set<int>>& included_leaves, |
nothing calls this directly
no test coverage detected