(self, sid)
| 363 | # ##### Backend-specific savepoint management methods ##### |
| 364 | |
| 365 | def _savepoint(self, sid): |
| 366 | with self.cursor() as cursor: |
| 367 | cursor.execute(self.ops.savepoint_create_sql(sid)) |
| 368 | |
| 369 | def _savepoint_rollback(self, sid): |
| 370 | with self.cursor() as cursor: |
no test coverage detected