Check if any sorted indexes exist for this tenant/collection.
(&self, tenant_id: u64, collection: &str)
| 69 | |
| 70 | /// Check if any sorted indexes exist for this tenant/collection. |
| 71 | pub fn has_sorted_indexes(&self, tenant_id: u64, collection: &str) -> bool { |
| 72 | let tkey = table_key(tenant_id, collection); |
| 73 | self.sorted_indexes.has_indexes(tkey) |
| 74 | } |
| 75 | |
| 76 | // ── Query methods ────────────────────────────────────────────────── |
| 77 |
nothing calls this directly
no test coverage detected