Release a savepoint. Do nothing if savepoints are not supported.
(self, sid)
| 421 | |
| 422 | @async_unsafe |
| 423 | def savepoint_commit(self, sid): |
| 424 | """ |
| 425 | Release a savepoint. Do nothing if savepoints are not supported. |
| 426 | """ |
| 427 | if not self._savepoint_allowed(): |
| 428 | return |
| 429 | |
| 430 | self.validate_thread_sharing() |
| 431 | self._savepoint_commit(sid) |
| 432 | |
| 433 | @async_unsafe |
| 434 | def clean_savepoints(self): |
no test coverage detected