>From 311ea8a493c939a70a89234246f662514687d8c2 Mon Sep 17 00:00:00 2001 From: Craig Ringer Date: Sat, 18 Aug 2012 12:51:28 +0800 Subject: [PATCH 1/3] Make sure you can't read through mvcc.sgml without realising that not everything is MVCC. --- doc/src/sgml/mvcc.sgml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml new file mode 100644 index 8f88582..9dc65f5 *** a/doc/src/sgml/mvcc.sgml --- b/doc/src/sgml/mvcc.sgml *************** *** 260,265 **** --- 260,277 ---- 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 + 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 -- 1.7.11.2