(self, target, bind, **kw)
| 327 | return self |
| 328 | |
| 329 | def _should_execute(self, target, bind, **kw): |
| 330 | if self._ddl_if is None: |
| 331 | return True |
| 332 | else: |
| 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): |
no test coverage detected