mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Add a note to the MVCC chapter that some things aren't transactional.
Craig Ringer, slightly edited by me.
This commit is contained in:
parent
71450d7fd6
commit
82ef3d3008
@ -260,6 +260,18 @@
|
|||||||
command <xref linkend="sql-set-transaction">.
|
command <xref linkend="sql-set-transaction">.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<important>
|
||||||
|
<para>
|
||||||
|
Some <productname>PostgreSQL</productname> data types and functions have
|
||||||
|
special rules regarding transactional behaviour. In particular, changes
|
||||||
|
made to a <literal>SEQUENCE</literal> (and therefore the counter of a
|
||||||
|
column declared using <literal>SERIAL</literal>) are immediately visible
|
||||||
|
to all other transactions and are not rolled back if the transaction
|
||||||
|
that made the changes aborts. See <xref linkend="functions-sequence">
|
||||||
|
and <xref linkend="datatype-serial">.
|
||||||
|
</para>
|
||||||
|
</important>
|
||||||
|
|
||||||
<sect2 id="xact-read-committed">
|
<sect2 id="xact-read-committed">
|
||||||
<title>Read Committed Isolation Level</title>
|
<title>Read Committed Isolation Level</title>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user