(self, index, drop_ok=False)
| 1654 | ) |
| 1655 | |
| 1656 | def visit_index(self, index, drop_ok=False): |
| 1657 | if not drop_ok and not self._can_drop_index(index): |
| 1658 | return |
| 1659 | |
| 1660 | with self.with_ddl_events(index): |
| 1661 | DropIndex(index)(index, self.connection) |
| 1662 | |
| 1663 | def visit_table( |
| 1664 | self, |
nothing calls this directly
no test coverage detected