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

Method IsAnyTupleNullable

be/src/runtime/descriptors.cc:529–534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

527}
528
529bool RowDescriptor::IsAnyTupleNullable() const {
530 for (int i = 0; i < tuple_idx_nullable_map_.size(); ++i) {
531 if (tuple_idx_nullable_map_[i]) return true;
532 }
533 return false;
534}
535
536void RowDescriptor::ToThrift(vector<TTupleId>* row_tuple_ids) const {
537 row_tuple_ids->clear();

Callers 3

CreateDescriptorsMethod · 0.80
TEST_FFunction · 0.80
BufferedTupleStreamMethod · 0.80

Calls 1

sizeMethod · 0.45

Tested by 2

CreateDescriptorsMethod · 0.64
TEST_FFunction · 0.64