diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2010-05-03 15:35:30 +0000 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2010-05-03 15:35:30 +0000 |
commit | d64e81c07e804108069f4d69e5ceb1ad641c3d7f (patch) | |
tree | 71789ac8392a27eaf5f470cef6992cb06c26a0e2 | |
parent | ffe8c7c677197ef8062a71309b14a1847841118c (diff) | |
download | postgresql-d64e81c07e804108069f4d69e5ceb1ad641c3d7f.tar.gz postgresql-d64e81c07e804108069f4d69e5ceb1ad641c3d7f.zip |
Remove spurious dot, per bug #5446 reported by koizumistr@minos.ocn.ne.jp
-rw-r--r-- | doc/src/sgml/mvcc.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index e3687aa34f0..341351e46ff 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.74 2010/04/03 07:22:55 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/mvcc.sgml,v 2.75 2010/05/03 15:35:30 alvherre Exp $ --> <chapter id="mvcc"> <title>Concurrency Control</title> @@ -565,7 +565,7 @@ SELECT SUM(value) FROM mytab WHERE class = 2; mode — but the semantics are all the same. The only real difference between one lock mode and another is the set of lock modes with which each conflicts (see <xref linkend="table-lock-compatibility">). - . Two transactions cannot hold locks of conflicting + Two transactions cannot hold locks of conflicting modes on the same table at the same time. (However, a transaction never conflicts with itself. For example, it might acquire <literal>ACCESS EXCLUSIVE</literal> lock and later acquire |