| 226 | return reinterpret_cast<const offset_type*>(data(1)); |
| 227 | } |
| 228 | offset_type* mutable_offsets() { |
| 229 | ARROW_DCHECK(!metadata_.is_fixed_length); |
| 230 | return reinterpret_cast<offset_type*>(mutable_data(1)); |
| 231 | } |
| 232 | |
| 233 | const uint8_t* var_length_rows() const { |
| 234 | ARROW_DCHECK(!metadata_.is_fixed_length); |
nothing calls this directly
no test coverage detected