Append to null bitmap, update the length
| 226 | |
| 227 | // Append to null bitmap, update the length |
| 228 | void UnsafeAppendToBitmap(bool is_valid) { |
| 229 | null_bitmap_builder_.UnsafeAppend(is_valid); |
| 230 | ++length_; |
| 231 | if (!is_valid) ++null_count_; |
| 232 | } |
| 233 | |
| 234 | // Vector append. Treat each zero byte as a nullzero. If valid_bytes is null |
| 235 | // assume all of length bits are valid. |
no test coverage detected