(self, sid)
| 367 | cursor.execute(self.ops.savepoint_create_sql(sid)) |
| 368 | |
| 369 | def _savepoint_rollback(self, sid): |
| 370 | with self.cursor() as cursor: |
| 371 | cursor.execute(self.ops.savepoint_rollback_sql(sid)) |
| 372 | |
| 373 | def _savepoint_commit(self, sid): |
| 374 | with self.cursor() as cursor: |
no test coverage detected