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:52 -0400 |
| commit | 01b02317172a5030b77a09aada11657c00398416 (patch) | |
| tree | d72545dd7cc4f46a38801877f23439a195339843 /docs | |
| parent | 57d9ccc4aaef0420f6ba60a26e6af4e83b803ae9 (diff) | |
[1.4.X] Fixed #18223 - Corrected default transaction behavior in postgresql docs.
Thanks philipn for the report and mateusgondim for the patch.
Backport of 2079b730f1 from master
Diffstat (limited to 'docs')
| -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 5580d65816..45c3e6d3c4 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: |
