| 170 | } |
| 171 | |
| 172 | Status BoundsCheckColumn(int column) { |
| 173 | if (column < 0 || column >= this->num_columns()) { |
| 174 | return Status::Invalid("Column index out of bounds (got ", column, |
| 175 | ", should be " |
| 176 | "between 0 and ", |
| 177 | this->num_columns() - 1, ")"); |
| 178 | } |
| 179 | return Status::OK(); |
| 180 | } |
| 181 | |
| 182 | Status BoundsCheckRowGroup(int row_group) { |
| 183 | // row group indices check |
nothing calls this directly
no test coverage detected