(self, connection, **kw)
| 1256 | |
| 1257 | class InvokeDDLBase(SchemaVisitor): |
| 1258 | def __init__(self, connection, **kw): |
| 1259 | self.connection = connection |
| 1260 | assert not kw, f"Unexpected keywords: {kw.keys()}" |
| 1261 | |
| 1262 | @contextlib.contextmanager |
| 1263 | def with_ddl_events(self, target, **kw): |