| 262 | return NULLPTR; |
| 263 | } |
| 264 | uint8_t* mutable_data(int i) { |
| 265 | ARROW_DCHECK(i >= 0 && i < kMaxBuffers); |
| 266 | if (ARROW_PREDICT_TRUE(buffers_[i])) { |
| 267 | return buffers_[i]->mutable_data(); |
| 268 | } |
| 269 | return NULLPTR; |
| 270 | } |
| 271 | |
| 272 | /// \brief Resize the fixed length buffers to store `num_extra_rows` more rows. The |
| 273 | /// fixed length buffers are buffers_[0] for null masks, buffers_[1] for row data if the |
no test coverage detected