From: Robert Haas Date: Tue, 21 Aug 2012 15:08:15 +0000 (-0400) Subject: Add a note to the MVCC chapter that some things aren't transactional. X-Git-Tag: REL9_3_BETA1~1051 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=82ef3d3008f8ec9c565f7a5724196cd0f342d594;p=postgresql Add a note to the MVCC chapter that some things aren't transactional. Craig Ringer, slightly edited by me. --- diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index 8f8858294d..d5c6076d4a 100644 --- a/doc/src/sgml/mvcc.sgml +++ b/doc/src/sgml/mvcc.sgml @@ -260,6 +260,18 @@ command . + + + Some PostgreSQL data types and functions have + special rules regarding transactional behaviour. In particular, changes + made to a SEQUENCE (and therefore the counter of a + column declared using SERIAL) are immediately visible + to all other transactions and are not rolled back if the transaction + that made the changes aborts. See + and . + + + Read Committed Isolation Level