| 560 | |
| 561 | template<typename Key, typename Engine> |
| 562 | std::string PersistentTableImpl<Key, Engine>::ValueFilePath(uint64_t chunk_id) const { |
| 563 | return PosixFile::JoinPath(values_dir_, kValueFileNamePrefix + GetChunkName(chunk_id)); |
| 564 | } |
| 565 | |
| 566 | template<typename Key, typename Engine> |
| 567 | std::string PersistentTableImpl<Key, Engine>::IndexFilePath(const std::string& name, |
no test coverage detected