| 183 | } |
| 184 | |
| 185 | void RowBuilder::SetField(uint32_t index) { |
| 186 | int8_t* ptr = buf_ + HEADER_LENGTH + (index >> 3); |
| 187 | *(reinterpret_cast<uint8_t*>(ptr)) &= ~(1 << (index & 0x07)); |
| 188 | } |
| 189 | |
| 190 | bool RowBuilder::AppendNULL() { |
| 191 | if (!SetNULL(cnt_)) return false; |
nothing calls this directly
no outgoing calls
no test coverage detected