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

Method IsMatched

be/src/exec/hash-table.inline.h:338–345  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336}
337
338inline bool HashTable::Iterator::IsMatched() const {
339 DCHECK(!AtEnd());
340 Bucket* bucket = &table_->buckets_[bucket_idx_];
341 if (table_->stores_duplicates() && bucket->HasDuplicates()) {
342 return node_->IsMatched();
343 }
344 return bucket->IsMatched();
345}
346
347inline void HashTable::Iterator::SetAtEnd() {
348 bucket_idx_ = BUCKET_NOT_FOUND;

Callers 6

DebugStringMethod · 0.45
FirstUnmatchedMethod · 0.45
InsertDuplicateNodeMethod · 0.45
NextUnmatchedMethod · 0.45

Calls 2

stores_duplicatesMethod · 0.80
HasDuplicatesMethod · 0.45

Tested by

no test coverage detected