| 36 | namespace { |
| 37 | |
| 38 | void ThrowInvalidLogicalType(const LogicalType& logical_type) { |
| 39 | std::stringstream ss; |
| 40 | ss << "Invalid logical type: " << logical_type.ToString(); |
| 41 | throw ParquetException(ss.str()); |
| 42 | } |
| 43 | |
| 44 | void CheckColumnBounds(int column_index, size_t max_columns) { |
| 45 | if (ARROW_PREDICT_FALSE(column_index < 0 || |
no test coverage detected