(self, dbapi_connection: PoolProxiedConnection)
| 123 | dbapi_connection.rollback() |
| 124 | |
| 125 | def do_commit(self, dbapi_connection: PoolProxiedConnection) -> None: |
| 126 | dbapi_connection.commit() |
| 127 | |
| 128 | def do_terminate(self, dbapi_connection: DBAPIConnection) -> None: |
| 129 | dbapi_connection.close() |
no test coverage detected