(self, bind)
| 318 | return self._ddl_if._should_execute(self, target, bind, **kw) |
| 319 | |
| 320 | def _invoke_with(self, bind): |
| 321 | if self._should_execute(self.target, bind): |
| 322 | return bind.execute(self) |
| 323 | |
| 324 | def __call__(self, target, bind, **kw): |
| 325 | """Execute the DDL as a ddl_listener.""" |
no test coverage detected