(self, sid)
| 371 | cursor.execute(self.ops.savepoint_rollback_sql(sid)) |
| 372 | |
| 373 | def _savepoint_commit(self, sid): |
| 374 | with self.cursor() as cursor: |
| 375 | cursor.execute(self.ops.savepoint_commit_sql(sid)) |
| 376 | |
| 377 | def _savepoint_allowed(self): |
| 378 | # Savepoints cannot be created outside a transaction |
no test coverage detected