| 239 | null_bitmap_builder_(context->pool()) {} |
| 240 | |
| 241 | Status Append(int32_t index, int32_t value_length) { |
| 242 | RETURN_NOT_OK(data_builder_.Append(index)); |
| 243 | values_length_ += value_length; |
| 244 | return null_bitmap_builder_.Append(true); |
| 245 | } |
| 246 | |
| 247 | Status AppendNull() { |
| 248 | RETURN_NOT_OK(data_builder_.Append(0)); |
no outgoing calls