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