(self, index, drop_ok=False)
| 1186 | ) |
| 1187 | |
| 1188 | def visit_index(self, index, drop_ok=False): |
| 1189 | if not drop_ok and not self._can_drop_index(index): |
| 1190 | return |
| 1191 | |
| 1192 | with self.with_ddl_events(index): |
| 1193 | DropIndex(index)(index, self.connection) |
| 1194 | |
| 1195 | def visit_table( |
| 1196 | self, |
nothing calls this directly
no test coverage detected