| 592 | } |
| 593 | |
| 594 | int64_t Table::GetTabletsCount() { |
| 595 | MutexLock lock(&mutex_); |
| 596 | return tablets_list_.size(); |
| 597 | } |
| 598 | |
| 599 | void Table::GetTsAddrTabletsCount(std::map<std::string, int64_t>* ts_addr_tablets_count) { |
| 600 | MutexLock lock(&mutex_); |
no test coverage detected