diff options
| author | Tim Graham <timograham@gmail.com> | 2012-08-16 16:05:41 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2012-08-16 18:15:19 -0400 |
| commit | 2079b730f139685bcedf0c92d5ed9a3f64b51e9f (patch) | |
| tree | 61312118095d6f01065a3f1c671cd33f01c5e81a /docs/ref/databases.txt | |
| parent | d739d531a111f8780c2183605b56c4e2352ec4a5 (diff) | |
Fixed #18223 - Corrected default transaction behavior in postgresql docs.
Thanks philipn for the report and mateusgondim for the patch.
Diffstat (limited to 'docs/ref/databases.txt')
| -rw-r--r-- | docs/ref/databases.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index 92b5665bea..3e256e9d9e 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -56,10 +56,10 @@ will do some additional queries to set these parameters. Transaction handling --------------------- -:doc:`By default </topics/db/transactions>`, Django starts a transaction when a -database connection is first used and commits the result at the end of the -request/response handling. The PostgreSQL backends normally operate the same -as any other Django backend in this respect. +:doc:`By default </topics/db/transactions>`, Django runs with an open +transaction which it commits automatically when any built-in, data-altering +model function is called. The PostgreSQL backends normally operate the same as +any other Django backend in this respect. .. _postgresql-autocommit-mode: |
