| 171 | } |
| 172 | |
| 173 | void UnsafeAppendNull() { |
| 174 | const int64_t num_bytes = value_data_builder_.length(); |
| 175 | offsets_builder_.UnsafeAppend(static_cast<offset_type>(num_bytes)); |
| 176 | UnsafeAppendToBitmap(false); |
| 177 | } |
| 178 | |
| 179 | void UnsafeAppendEmptyValue() { |
| 180 | const int64_t num_bytes = value_data_builder_.length(); |
nothing calls this directly
no test coverage detected