(self, drop, **kw)
| 7363 | return text |
| 7364 | |
| 7365 | def visit_drop_sequence(self, drop, **kw): |
| 7366 | text = "DROP SEQUENCE " |
| 7367 | if drop.if_exists: |
| 7368 | text += "IF EXISTS " |
| 7369 | return text + self.preparer.format_sequence(drop.element) |
| 7370 | |
| 7371 | def visit_drop_constraint(self, drop, **kw): |
| 7372 | constraint = drop.element |
nothing calls this directly
no test coverage detected