MCPcopy Create free account
hub / github.com/baidu/tera / ScanMetaTable

Method ScanMetaTable

src/sdk/table_impl.cc:1572–1579  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1570}
1571
1572void TableImpl::ScanMetaTable(const std::string& key_start, const std::string& key_end) {
1573 MutexLock lock(&meta_mutex_);
1574 meta_updating_count_++;
1575 ScanMetaTableAsync(key_start, key_end, key_end, false);
1576 while (meta_updating_count_ > 0) {
1577 meta_cond_.Wait();
1578 }
1579}
1580
1581void TableImpl::ScanMetaTableAsyncInLock(const std::string& key_start, const std::string& key_end,
1582 const std::string& expand_key_end, bool zk_access) {

Callers 1

FindTsOpFunction · 0.80

Calls 1

WaitMethod · 0.45

Tested by

no test coverage detected