| 487 | } |
| 488 | |
| 489 | void Tablet::ToMetaTableKeyValue(std::string* packed_key, std::string* packed_value) { |
| 490 | MutexLock lock(&mutex_); |
| 491 | MakeMetaTableKeyValue(meta_, packed_key, packed_value); |
| 492 | } |
| 493 | |
| 494 | std::ostream& operator<<(std::ostream& o, const Table& table) { |
| 495 | MutexLock lock(&table.mutex_); |
no test coverage detected