Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b5a6a52

Browse files
committed
Remove stray semicolon, per report from strk
1 parent 912eb88 commit b5a6a52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/mvcc.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/mvcc.sgml,v 2.72 2009/06/17 21:58:49 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/mvcc.sgml,v 2.73 2010/02/24 14:10:24 alvherre Exp $ -->
22

33
<chapter id="mvcc">
44
<title>Concurrency Control</title>
@@ -1080,7 +1080,7 @@ SELECT pg_advisory_lock(id) FROM foo WHERE id = 12345; -- ok
10801080
SELECT pg_advisory_lock(id) FROM foo WHERE id &gt; 12345 LIMIT 100; -- danger!
10811081
SELECT pg_advisory_lock(q.id) FROM
10821082
(
1083-
SELECT id FROM foo WHERE id &gt; 12345 LIMIT 100;
1083+
SELECT id FROM foo WHERE id &gt; 12345 LIMIT 100
10841084
) q; -- ok
10851085
</screen>
10861086
In the above queries, the second form is dangerous because the

0 commit comments

Comments
 (0)