Insert or overwrite a PK → location mapping (used during compaction remap).
(&mut self, pk_bytes: Vec<u8>, location: RowLocation)
| 71 | |
| 72 | /// Insert or overwrite a PK → location mapping (used during compaction remap). |
| 73 | pub fn upsert(&mut self, pk_bytes: Vec<u8>, location: RowLocation) { |
| 74 | self.inner.insert(pk_bytes, location); |
| 75 | } |
| 76 | |
| 77 | /// Look up a row location by PK. |
| 78 | pub fn get(&self, pk_bytes: &[u8]) -> Option<&RowLocation> { |
no test coverage detected