(self, dbapi_connection)
| 834 | pass |
| 835 | |
| 836 | def do_rollback(self, dbapi_connection): |
| 837 | if self.skip_autocommit_rollback and self.detect_autocommit_setting( |
| 838 | dbapi_connection |
| 839 | ): |
| 840 | return |
| 841 | dbapi_connection.rollback() |
| 842 | |
| 843 | def do_commit(self, dbapi_connection): |
| 844 | dbapi_connection.commit() |
nothing calls this directly
no test coverage detected