MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / getTotalRowCount

Method getTotalRowCount

src/Interpreters/ConcurrentHashJoin.cpp:453–462  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

451}
452
453size_t ConcurrentHashJoin::getTotalRowCount() const
454{
455 size_t res = 0;
456 for (const auto & hash_join : hash_joins)
457 {
458 std::lock_guard lock(hash_join->mutex);
459 res += hash_join->data->getTotalRowCount();
460 }
461 return res;
462}
463
464size_t ConcurrentHashJoin::getTotalByteCount() const
465{

Callers 1

updateStatisticsFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected