Check whether a sequence with the given name exists in this node's in-memory registry.
(&self, tenant_id: u64, name: &str)
| 139 | /// Check whether a sequence with the given name exists in this |
| 140 | /// node's in-memory registry. |
| 141 | pub fn has_sequence(&self, tenant_id: u64, name: &str) -> bool { |
| 142 | self.shared.sequence_registry.exists(tenant_id, name) |
| 143 | } |
| 144 | |
| 145 | /// Read the current counter of a sequence from this node's |
| 146 | /// in-memory registry, if present. |
no test coverage detected