| 166 | } |
| 167 | |
| 168 | FileColumnIteratorFactory AllRowGroupsFactory() { |
| 169 | return SomeRowGroupsFactory(Iota(reader_->metadata()->num_row_groups())); |
| 170 | } |
| 171 | |
| 172 | Status BoundsCheckColumn(int column) { |
| 173 | if (column < 0 || column >= this->num_columns()) { |
nothing calls this directly
no test coverage detected