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

Method set_level

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

Source from the content-addressed store, hash-verified

412}
413
414inline void HashTableCtx::set_level(int level) {
415 DCHECK_GE(level, 0);
416 DCHECK_LT(level, seeds_.size());
417 level_ = level;
418}
419
420inline int64_t HashTable::CurrentMemSize() const {
421 return num_buckets_ * (sizeof(Bucket) + sizeof(uint32_t))

Callers 7

CreateHashPartitionsMethod · 0.80
BuildHashTableMethod · 0.80
ResetMethod · 0.80
BeginSpilledProbeMethod · 0.80
TEST_FFunction · 0.80
ResetMethod · 0.80
CreateHashPartitionsMethod · 0.80

Calls 1

sizeMethod · 0.45

Tested by 1

TEST_FFunction · 0.64