We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent558d1c9 commit5042d16Copy full SHA for 5042d16
doc/src/sgml/mvcc.sgml
@@ -692,6 +692,8 @@ SELECT SUM(value) FROM mytab WHERE class = 2;
692
<literal>SHARE</literal>, <literal>SHARE ROW
693
EXCLUSIVE</literal>, <literal>EXCLUSIVE</literal>, and
694
<literal>ACCESS EXCLUSIVE</literal> lock modes.
695
+ This mode protects a table against concurrent data changes, and
696
+ is self-exclusive so that only one session can hold it at a time.
697
</para>
698
699
<para>
@@ -719,9 +721,8 @@ SELECT SUM(value) FROM mytab WHERE class = 2;
719
721
720
722
723
- This lock mode is not automatically acquired on user tables by any
- <productname>PostgreSQL</productname> command. However it is
724
- acquired on certain system catalogs in some operations.
+ This lock mode is not automatically acquired on tables by any
725
+ <productname>PostgreSQL</productname> command.
726
727
</listitem>
728
</varlistentry>