Execute the DDL as a ddl_listener.
(self, target, bind, **kw)
| 322 | return bind.execute(self) |
| 323 | |
| 324 | def __call__(self, target, bind, **kw): |
| 325 | """Execute the DDL as a ddl_listener.""" |
| 326 | |
| 327 | self.against(target)._invoke_with(bind) |
| 328 | |
| 329 | def _generate(self): |
| 330 | s = self.__class__.__new__(self.__class__) |
nothing calls this directly
no test coverage detected