diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 2dea337..88b978f 100644
a
|
b
|
will do some additional queries to set these parameters.
|
56 | 56 | Transaction handling |
57 | 57 | --------------------- |
58 | 58 | |
59 | | :doc:`By default </topics/db/transactions>`, Django starts a transaction when a |
60 | | database connection is first used and commits the result at the end of the |
61 | | request/response handling. The PostgreSQL backends normally operate the same |
62 | | as any other Django backend in this respect. |
| 59 | :doc:`By default </topics/db/transactions>`, Django runs an open transaction which |
| 60 | it commits automatically when any built-in, data-altering model function is called. |
| 61 | The PostgreSQL backends normally operate the same as any other Django backend in |
| 62 | this respect. |
63 | 63 | |
64 | 64 | .. _postgresql-autocommit-mode: |