| 217 | return data(1) + static_cast<int64_t>(row_id) * metadata_.fixed_length; |
| 218 | } |
| 219 | uint8_t* mutable_fixed_length_rows(uint32_t row_id) { |
| 220 | ARROW_DCHECK(metadata_.is_fixed_length); |
| 221 | return mutable_data(1) + static_cast<int64_t>(row_id) * metadata_.fixed_length; |
| 222 | } |
| 223 | |
| 224 | const offset_type* offsets() const { |
| 225 | ARROW_DCHECK(!metadata_.is_fixed_length); |
nothing calls this directly
no test coverage detected