diff options
author | Kevin Grittner <kgrittn@postgresql.org> | 2015-11-02 06:26:28 -0600 |
---|---|---|
committer | Kevin Grittner <kgrittn@postgresql.org> | 2015-11-02 06:26:28 -0600 |
commit | 67d4738d934e9df455d2f67b2617423319b377d5 (patch) | |
tree | 61bc582a950114d2cf18884276dcf82b53bd89b8 | |
parent | 50ca917d911485aa696a30943fda98f41ff92206 (diff) | |
download | postgresql-67d4738d934e9df455d2f67b2617423319b377d5.tar.gz postgresql-67d4738d934e9df455d2f67b2617423319b377d5.zip |
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 5128982e07d..dd3c7755309 100644 --- a/doc/src/sgml/mvcc.sgml +++ b/doc/src/sgml/mvcc.sgml @@ -990,7 +990,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. This is also the default lock mode for <command>LOCK TABLE</command> statements that do not specify |