| 324 | } |
| 325 | |
| 326 | Result<std::shared_ptr<Table>> ReadRowGroup( |
| 327 | int row_group_index, const std::vector<int>& column_indices) override { |
| 328 | return ReadRowGroups({row_group_index}, column_indices); |
| 329 | } |
| 330 | |
| 331 | Result<std::shared_ptr<Table>> ReadRowGroup(int i) override { |
| 332 | return ReadRowGroup(i, Iota(reader_->metadata()->num_columns())); |
nothing calls this directly
no test coverage detected