(self, bind)
| 333 | return self._ddl_if._should_execute(self, target, bind, **kw) |
| 334 | |
| 335 | def _invoke_with(self, bind): |
| 336 | if self._should_execute(self.target, bind): |
| 337 | return bind.execute(self) |
| 338 | |
| 339 | def __call__(self, target, bind, **kw): |
| 340 | """Execute the DDL as a ddl_listener.""" |
no test coverage detected