| 541 | } |
| 542 | |
| 543 | std::string GetTabletIdForDiff(const std::string& val) { |
| 544 | std::size_t pos = val.find(':'); |
| 545 | CHECK(pos != std::string::npos); |
| 546 | std::string prefix = val.substr(0, pos); |
| 547 | std::vector<std::string> prefix_datas; |
| 548 | SplitString(prefix, ",", &prefix_datas); |
| 549 | return prefix_datas[6]; |
| 550 | } |
| 551 | |
| 552 | std::string GetTabletIdForDump(const std::string& val) { |
| 553 | std::size_t pos = val.find(':'); |
nothing calls this directly
no test coverage detected