| 269 | } |
| 270 | |
| 271 | void CheckPageLargeEnough(int64_t remaining_bytes, int32_t value_width, |
| 272 | int64_t num_values) { |
| 273 | if (remaining_bytes < value_width * num_values) { |
| 274 | ParquetException::EofException(); |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | // Internal decoder class hierarchy |
| 279 |