Execute the DDL as a ddl_listener.
(self, target, bind, **kw)
| 337 | return bind.execute(self) |
| 338 | |
| 339 | def __call__(self, target, bind, **kw): |
| 340 | """Execute the DDL as a ddl_listener.""" |
| 341 | |
| 342 | self.against(target)._invoke_with(bind) |
| 343 | |
| 344 | def _generate(self): |
| 345 | s = self.__class__.__new__(self.__class__) |
nothing calls this directly
no test coverage detected