| 1623 | } |
| 1624 | |
| 1625 | void TableImpl::ScanMetaTableCallBackWrapper(std::weak_ptr<TableImpl> weak_ptr_table, |
| 1626 | std::string key_start, std::string key_end, |
| 1627 | std::string expand_key_end, int64_t start_time, |
| 1628 | ScanTabletRequest* request, |
| 1629 | ScanTabletResponse* response, bool failed, |
| 1630 | int error_code) { |
| 1631 | auto table = weak_ptr_table.lock(); |
| 1632 | if (!table) { |
| 1633 | return; |
| 1634 | } |
| 1635 | table->ScanMetaTableCallBack(key_start, key_end, expand_key_end, start_time, request, response, |
| 1636 | failed, error_code); |
| 1637 | } |
| 1638 | |
| 1639 | void TableImpl::ScanMetaTableCallBack(std::string key_start, std::string key_end, |
| 1640 | std::string expand_key_end, int64_t start_time, |
nothing calls this directly
no test coverage detected