(&self, tid: u64)
| 13 | /// read paths treat that as "empty" rather than an error. |
| 14 | #[inline] |
| 15 | pub(in crate::data::executor) fn csr_partition(&self, tid: u64) -> Option<&CsrIndex> { |
| 16 | self.csr.partition(TenantId::new(tid)) |
| 17 | } |
| 18 | |
| 19 | /// Mutable view of a tenant's CSR partition, creating an empty one |
| 20 | /// on first use. Canonical write-path entry point — resolves the |
no test coverage detected