Add a note to the MVCC chapter that some things aren't transactional.
authorRobert Haas
Tue, 21 Aug 2012 15:08:15 +0000 (11:08 -0400)
committerRobert Haas
Tue, 21 Aug 2012 15:10:17 +0000 (11:10 -0400)
Craig Ringer, slightly edited by me.

doc/src/sgml/mvcc.sgml

index 8f8858294dc32b5f0bd18e9025428317dbfbc3fe..d5c6076d4aa64ae3b899977447424197f1ef7bff 100644 (file)
     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