(&self, tid: u64, node_id: &str)
| 40 | /// caller's tenant. |
| 41 | #[inline] |
| 42 | pub(in crate::data::executor) fn is_node_deleted(&self, tid: u64, node_id: &str) -> bool { |
| 43 | self.deleted_nodes |
| 44 | .get(&TenantId::new(tid)) |
| 45 | .is_some_and(|s| s.contains(node_id)) |
| 46 | } |
| 47 | } |
no test coverage detected