| 311 | } |
| 312 | |
| 313 | static void PrintMetaInfo(const TabletMeta* meta) { |
| 314 | std::cout << "tablet: " << meta->table_name() << " [" << meta->key_range().key_start() << " (" |
| 315 | << DebugString(meta->key_range().key_start()) << "), " << meta->key_range().key_end() |
| 316 | << " (" << DebugString(meta->key_range().key_end()) << ")], " << meta->path() << ", " |
| 317 | << meta->server_addr() << ", " << meta->size() << ", " |
| 318 | << StatusCodeToString(meta->status()) << ", " |
| 319 | << StatusCodeToString(meta->compact_status()) << std::endl; |
| 320 | } |
| 321 | |
| 322 | CliStatus GetMetaValue(const std::string& meta_server, common::ThreadPool* thread_pool, |
| 323 | const std::string& table_name, const std::string& start_key, |
no test coverage detected