aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2006-10-20 20:35:13 +0000
committerNeil Conway <neilc@samurai.com>2006-10-20 20:35:13 +0000
commit8b175c75a83a517764a8bb8349f30d32a68c017c (patch)
tree19ee49a89073f0fa6994bd5e5868fdd5b1d571bd
parentb0b9bedf8d8bbf67767c9347e57359ae3587dc4d (diff)
downloadpostgresql-8b175c75a83a517764a8bb8349f30d32a68c017c.tar.gz
postgresql-8b175c75a83a517764a8bb8349f30d32a68c017c.zip
Minor doc tweak: make a reference to pg_locks into a link.
-rw-r--r--doc/src/sgml/mvcc.sgml7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml
index ef8675b3a4e..21865d36d4b 100644
--- a/doc/src/sgml/mvcc.sgml
+++ b/doc/src/sgml/mvcc.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/mvcc.sgml,v 2.63 2006/09/20 23:43:22 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/mvcc.sgml,v 2.64 2006/10/20 20:35:13 neilc Exp $ -->
<chapter id="mvcc">
<title>Concurrency Control</title>
@@ -890,8 +890,9 @@ UPDATE accounts SET balance = balance - 100.00 WHERE acctnum = 22222;
already holds a given lock, additional requests will always succeed, even
if other sessions are awaiting the lock.) Like all locks in
<productname>PostgreSQL</productname>, a complete list of advisory
- locks currently held by any session can be found in the system view
- <structname>pg_locks</structname>.
+ locks currently held by any session can be found in the
+ <link linkend="view-pg-locks"><structname>pg_locks</structname></link>
+ system view.
</para>
<para>