Turn null indicator bit off.
| 278 | |
| 279 | /// Turn null indicator bit off. |
| 280 | void SetNotNull(const NullIndicatorOffset& offset) { |
| 281 | char* null_indicator_byte = reinterpret_cast<char*>(this) + offset.byte_offset; |
| 282 | *null_indicator_byte &= ~offset.bit_mask; |
| 283 | } |
| 284 | |
| 285 | bool IsNull(const NullIndicatorOffset& offset) const { |
| 286 | const char* null_indicator_byte = |
no outgoing calls