diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-07-07 13:14:46 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-07-07 13:15:15 -0400 |
commit | a195e3c34f1eeb6a607c342121edf48e49067ea9 (patch) | |
tree | 75dbe45ab465bbe8bc519db9856ac761a2a2a6b7 /doc/src | |
parent | 928408d9e5b4b389897b799b3b6af505d719a3f6 (diff) | |
download | postgresql-a195e3c34f1eeb6a607c342121edf48e49067ea9.tar.gz postgresql-a195e3c34f1eeb6a607c342121edf48e49067ea9.zip |
Finish disabling reduced-lock-levels-for-DDL feature.
Previous patch only covered the ALTER TABLE changes, not changes in other
commands; and it neglected to revert the documentation changes.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/mvcc.sgml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index 1d337b80550..1ec07dd9eee 100644 --- a/doc/src/sgml/mvcc.sgml +++ b/doc/src/sgml/mvcc.sgml @@ -878,9 +878,8 @@ ERROR: could not serialize access due to read/write dependencies among transact </para> <para> - Acquired by <command>CREATE TRIGGER</command>, - <command>CREATE RULE</command> (except for <literal>ON SELECT</> - rules) and some forms of <command>ALTER TABLE</command>. + This lock mode is not automatically acquired by any + <productname>PostgreSQL</productname> command. </para> </listitem> </varlistentry> @@ -925,10 +924,10 @@ ERROR: could not serialize access due to read/write dependencies among transact </para> <para> - Acquired by the <command>DROP TABLE</command>, + Acquired by the <command>ALTER TABLE</>, <command>DROP TABLE</>, <command>TRUNCATE</command>, <command>REINDEX</command>, <command>CLUSTER</command>, and <command>VACUUM FULL</command> - commands, and some forms of <command>ALTER TABLE</>. + commands. This is also the default lock mode for <command>LOCK TABLE</command> statements that do not specify a mode explicitly. </para> |