(
self,
dialect,
connection,
checkfirst=CheckFirst.NONE,
tables=None,
**kwargs,
)
| 1522 | |
| 1523 | class SchemaDropper(InvokeDropDDLBase): |
| 1524 | def __init__( |
| 1525 | self, |
| 1526 | dialect, |
| 1527 | connection, |
| 1528 | checkfirst=CheckFirst.NONE, |
| 1529 | tables=None, |
| 1530 | **kwargs, |
| 1531 | ): |
| 1532 | super().__init__(connection, **kwargs) |
| 1533 | self.checkfirst = CheckFirst(checkfirst) |
| 1534 | self.tables = tables |
| 1535 | self.preparer = dialect.identifier_preparer |
| 1536 | self.dialect = dialect |
| 1537 | self.memo = {} |
| 1538 | |
| 1539 | def visit_metadata(self, metadata): |
| 1540 | if self.tables is not None: |
nothing calls this directly
no test coverage detected