diff options
author | Michael Paquier | 2021-04-01 06:28:37 +0000 |
---|---|---|
committer | Michael Paquier | 2021-04-01 06:28:37 +0000 |
commit | ffd3391ea94165fbb5adc9534894c62d41138505 (patch) | |
tree | d877211092ab548f5a4adce3ee4c0ab42d83c2c2 /doc/src/sgml/ref/vacuum.sgml | |
parent | 4778826532a62fd6e4d3fdeef9532c943604c730 (diff) |
doc: Clarify use of ACCESS EXCLUSIVE lock in various sections
Some sections of the documentation used "exclusive lock" to describe
that an ACCESS EXCLUSIVE lock is taken during a given operation. This
can be confusing to the reader as ACCESS SHARE is allowed with an
EXCLUSIVE lock is used, but that would not be the case with what is
described on those parts of the documentation.
Author: Greg Rychlewski
Discussion: https://postgr.es/m/CAKemG7VptD=7fNWckFMsMVZL_zzvgDO6v2yVmQ+ZiBfc_06kCQ@mail.gmail.com
Backpatch-through: 9.6
Diffstat (limited to 'doc/src/sgml/ref/vacuum.sgml')
-rw-r--r-- | doc/src/sgml/ref/vacuum.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml index bb1c0f8fb6f..6a0028a5142 100644 --- a/doc/src/sgml/ref/vacuum.sgml +++ b/doc/src/sgml/ref/vacuum.sgml @@ -83,8 +83,8 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet specify parallel workers as zero. <command>VACUUM FULL</command> rewrites the entire contents of the table into a new disk file with no extra space, allowing unused space to be returned to the operating system. This form is - much slower and requires an exclusive lock on each table while it is being - processed. + much slower and requires an <literal>ACCESS EXCLUSIVE</literal> lock on + each table while it is being processed. </para> <para> |