(self, xid: Any, recover: bool = False)
| 1046 | self.engine.dialect.do_rollback_twophase(self, xid, recover=recover) |
| 1047 | |
| 1048 | def commit_prepared(self, xid: Any, recover: bool = False) -> None: |
| 1049 | self.engine.dialect.do_commit_twophase(self, xid, recover=recover) |
| 1050 | |
| 1051 | def in_transaction(self) -> bool: |
| 1052 | """Return True if a transaction is in progress.""" |