Look up a row location by PK.
(&self, pk_bytes: &[u8])
| 76 | |
| 77 | /// Look up a row location by PK. |
| 78 | pub fn get(&self, pk_bytes: &[u8]) -> Option<&RowLocation> { |
| 79 | self.inner.get(pk_bytes) |
| 80 | } |
| 81 | |
| 82 | /// Remove a PK entry (used when a row is deleted and compacted away). |
| 83 | pub fn remove(&mut self, pk_bytes: &[u8]) -> Option<RowLocation> { |
no outgoing calls