| 935 | } |
| 936 | |
| 937 | void TableImpl::MutateCallBackWrapper(std::weak_ptr<TableImpl> weak_ptr_table, |
| 938 | std::vector<int64_t>* mu_id_list, WriteTabletRequest* request, |
| 939 | WriteTabletResponse* response, bool failed, int error_code) { |
| 940 | auto table = weak_ptr_table.lock(); |
| 941 | if (!table) { |
| 942 | return; |
| 943 | } |
| 944 | table->MutateCallBack(mu_id_list, request, response, failed, error_code); |
| 945 | } |
| 946 | |
| 947 | void TableImpl::MutateCallBack(std::vector<int64_t>* mu_id_list, WriteTabletRequest* request, |
| 948 | WriteTabletResponse* response, bool failed, int error_code) { |
nothing calls this directly
no test coverage detected