diff options
author | Kevin Grittner <kgrittn@postgresql.org> | 2015-11-02 06:26:36 -0600 |
---|---|---|
committer | Kevin Grittner <kgrittn@postgresql.org> | 2015-11-02 06:26:36 -0600 |
commit | 11e7f9d52e2108f340213e51a8114a832b0ccc52 (patch) | |
tree | 38704a39de7b263d04c1bda3739375a25edc2d0a | |
parent | 1d95617f7039d77bba09415db6ca9b4bc8791cf6 (diff) |
Add RMV to list of commands taking AE lock.
Backpatch to 9.3, where it was initially omitted.
Craig Ringer, with minor adjustment by Kevin Grittner
-rw-r--r-- | doc/src/sgml/mvcc.sgml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index 2c7a03d0925..78a6a15ea73 100644 --- a/doc/src/sgml/mvcc.sgml +++ b/doc/src/sgml/mvcc.sgml @@ -941,7 +941,9 @@ ERROR: could not serialize access due to read/write dependencies among transact <para> Acquired by the <command>DROP TABLE</>, <command>TRUNCATE</command>, <command>REINDEX</command>, - <command>CLUSTER</command>, and <command>VACUUM FULL</command> + <command>CLUSTER</command>, <command>VACUUM FULL</command>, + and <command>REFRESH MATERIALIZED VIEW</command> (without + <option>CONCURRENTLY</option>) commands. Many forms of <command>ALTER TABLE</> also acquire a lock at this level (see <xref linkend="SQL-ALTERTABLE">). This is also the default lock mode for <command>LOCK TABLE</command> |