MCPcopy Create free account
hub / github.com/apache/impala / SetNotNull

Method SetNotNull

be/src/runtime/tuple.h:280–283  ·  view source on GitHub ↗

Turn null indicator bit off.

Source from the content-addressed store, hash-verified

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 =

Callers 9

SetDstSlotMethod · 0.80
AddIcebergColumnsMethod · 0.80
CreateTupleRowMethod · 0.80
CreateBatchMethod · 0.80
TEST_FFunction · 0.80
CreateTupleRowMethod · 0.80

Calls

no outgoing calls

Tested by 3

CreateTupleRowMethod · 0.64
CreateBatchMethod · 0.64
TEST_FFunction · 0.64