(&self)
| 166 | } |
| 167 | |
| 168 | fn list_indexes(&self) -> StorageResult<Vec<String>> { |
| 169 | // Return all trees for now - could filter by naming convention later |
| 170 | self.list_trees() |
| 171 | } |
| 172 | |
| 173 | fn drop_index(&self, name: &str) -> StorageResult<()> { |
| 174 | self.db |
nothing calls this directly
no test coverage detected