aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-03-04 04:41:36 +0000
committerBruce Momjian <bruce@momjian.us>2006-03-04 04:41:36 +0000
commitf1d7f80c1aae60ccfe0c3fbdc8ef74404da4d479 (patch)
tree7041309d400df7020e7d5a33a6a3e06a2e831fe4
parent64e7c8a951c8c8bbf28de24c5a62c0596f10b2dd (diff)
downloadpostgresql-f1d7f80c1aae60ccfe0c3fbdc8ef74404da4d479.tar.gz
postgresql-f1d7f80c1aae60ccfe0c3fbdc8ef74404da4d479.zip
> It doesn't say that only the listed commands acquire ACCESS EXCLUSIVE,
> just that certain commands do. TRUNCATE isn't shown. Patch against HEAD to add TRUNCATE to the list of commands that aquire ACCESS EXCLUSIVE. Jim C. Nasby, Sr.
-rw-r--r--doc/src/sgml/mvcc.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml
index 9e2adc4e46f..f6aa4cb2d13 100644
--- a/doc/src/sgml/mvcc.sgml
+++ b/doc/src/sgml/mvcc.sgml
@@ -1,5 +1,5 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/mvcc.sgml,v 2.53 2005/11/07 17:36:44 tgl Exp $
+$PostgreSQL: pgsql/doc/src/sgml/mvcc.sgml,v 2.54 2006/03/04 04:41:36 momjian Exp $
-->
<chapter id="mvcc">
@@ -710,7 +710,7 @@ SELECT SUM(value) FROM mytab WHERE class = 2;
<para>
Acquired by the <command>ALTER TABLE</command>, <command>DROP
- TABLE</command>, <command>REINDEX</command>,
+ TABLE</command>, <command>TRUNCATE</command>, <command>REINDEX</command>,
<command>CLUSTER</command>, and <command>VACUUM FULL</command>
commands. This is also the default lock mode for <command>LOCK
TABLE</command> statements that do not specify a mode explicitly.