mirror of https://github.com/django/django.git
Merge pull request #3763 from dcramer/patch-2
Correct scoping of savepoint example
This commit is contained in:
commit
653a3a4e18
|
@ -492,8 +492,8 @@ you can roll back the single offending operation, rather than the entire
|
|||
transaction. For example::
|
||||
|
||||
a.save() # Succeeds, and never undone by savepoint rollback
|
||||
sid = transaction.savepoint()
|
||||
try:
|
||||
sid = transaction.savepoint()
|
||||
b.save() # Could throw exception
|
||||
transaction.savepoint_commit(sid)
|
||||
except IntegrityError:
|
||||
|
|
Loading…
Reference in New Issue