Return a new :class:`.StatementLambdaElement` that will run all lambdas unconditionally each time.
(self)
| 644 | return self._proxied.is_dml |
| 645 | |
| 646 | def spoil(self) -> NullLambdaStatement: |
| 647 | """Return a new :class:`.StatementLambdaElement` that will run |
| 648 | all lambdas unconditionally each time. |
| 649 | |
| 650 | """ |
| 651 | return NullLambdaStatement(self.fn()) |
| 652 | |
| 653 | |
| 654 | class NullLambdaStatement(roles.AllowsLambdaRole, elements.ClauseElement): |
nothing calls this directly
no test coverage detected