#25311 closed Cleanup/optimization (fixed)
Docs: "You may perform partial commits ..." Sorry you can't. Commits are ACID. They are durable xor not.
Reported by: | Thomas Güttler | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.8 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
There is vague description on:
https://docs.djangoproject.com/en/1.8/topics/db/transactions/#tying-transactions-to-http-requests
"You may perform partial commits ..."
Sorry, you can't. Commits are ACID. They are durable xor not. They can't be partial.
Some years ago I was wondering why transactions in PostgreSQL are not nestable. I needed some time to understand it. The fact: Transaction can't be nested.
I would write:
"You may perform subtransactions via savepoints ..."
Note:
See TracTickets
for help on using tickets.
Sounds good to me.