Correct overstatement in locking docs: we said ExclusiveLock is never
authorTom Lane
Sat, 26 Feb 2005 18:37:17 +0000 (18:37 +0000)
committerTom Lane
Sat, 26 Feb 2005 18:37:17 +0000 (18:37 +0000)
taken automatically, but this is only true with respect to user tables.

doc/src/sgml/mvcc.sgml

index 01f697d426ae38bd28e1fb9d726de4e1a84df9a5..1aeec22b66cf43a24755f861d0827a42bfc03838 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -677,8 +677,9 @@ SELECT SUM(value) FROM mytab WHERE class = 2;
    
 
    
-         This lock mode is not automatically acquired by any
-         PostgreSQL command.
+         This lock mode is not automatically acquired on user tables by any
+         PostgreSQL command.  However it is
+         acquired on certain system catalogs in some operations.