(&self, change_id: NodeId)
| 265 | } |
| 266 | |
| 267 | fn has_change_in_graph(&self, change_id: NodeId) -> PristineResult<bool> { |
| 268 | let table = self.txn.open_multimap_table(GRAPH)?; |
| 269 | let start_key = encode_vertex(change_id.get(), 0, 0); |
| 270 | let end_key = encode_vertex(change_id.get(), u64::MAX, u64::MAX); |
| 271 | let has = table |
| 272 | .range::<&[u8; 24]>(&start_key..=&end_key)? |
| 273 | .next() |
| 274 | .is_some(); |
| 275 | Ok(has) |
| 276 | } |
| 277 | } |
nothing calls this directly
no test coverage detected