| 283 | } |
| 284 | |
| 285 | bool IsNull(const NullIndicatorOffset& offset) const { |
| 286 | const char* null_indicator_byte = |
| 287 | reinterpret_cast<const char*>(this) + offset.byte_offset; |
| 288 | return (*null_indicator_byte & offset.bit_mask) != 0; |
| 289 | } |
| 290 | |
| 291 | /// 'slot_desc' describes a struct slot in this tuple. Sets 'slot_desc' to null in this |
| 292 | /// tuple and iterates its children and sets all of them to null too. Recursively |
no outgoing calls