| 565 | |
| 566 | template<typename Key, typename Engine> |
| 567 | std::string PersistentTableImpl<Key, Engine>::IndexFilePath(const std::string& name, |
| 568 | uint64_t chunk_id) const { |
| 569 | return PosixFile::JoinPath(SnapshotDirPath(name), kIndexFileNamePrefix + GetChunkName(chunk_id)); |
| 570 | } |
| 571 | |
| 572 | template<typename Key, typename Engine> |
| 573 | std::string PersistentTableImpl<Key, Engine>::SnapshotDirPath(const std::string& name) const { |
nothing calls this directly
no test coverage detected