| 555 | |
| 556 | template<typename Key, typename Engine> |
| 557 | std::string PersistentTableImpl<Key, Engine>::KeyFilePath(uint64_t chunk_id) const { |
| 558 | return PosixFile::JoinPath(keys_dir_, kKeyFileNamePrefix + GetChunkName(chunk_id)); |
| 559 | } |
| 560 | |
| 561 | template<typename Key, typename Engine> |
| 562 | std::string PersistentTableImpl<Key, Engine>::ValueFilePath(uint64_t chunk_id) const { |
no test coverage detected