From: Tom Lane Date: Sat, 26 Feb 2005 18:37:17 +0000 (+0000) Subject: Correct overstatement in locking docs: we said ExclusiveLock is never X-Git-Tag: REL8_1_0BETA1~1315 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=891497d3a9708eb773cd3bd9ff09de1beb9453fa;p=thirdparty%2Fpostgresql.git Correct overstatement in locking docs: we said ExclusiveLock is never taken automatically, but this is only true with respect to user tables. --- diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index 01f697d426a..1aeec22b66c 100644 --- a/doc/src/sgml/mvcc.sgml +++ b/doc/src/sgml/mvcc.sgml @@ -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.