(&mut self, tid: u64)
| 22 | /// node names inside that partition. |
| 23 | #[inline] |
| 24 | pub(in crate::data::executor) fn csr_partition_mut(&mut self, tid: u64) -> &mut CsrIndex { |
| 25 | self.csr.get_or_create(TenantId::new(tid)) |
| 26 | } |
| 27 | |
| 28 | /// Mark `node_id` as deleted within the caller's tenant. Used by |
| 29 | /// PointDelete cascade so subsequent `EdgePut` to the same node is |
no test coverage detected