Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb5a6a52

Browse files
committed
Remove stray semicolon, per report from strk
1 parent912eb88 commitb5a6a52

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)

[8]ページ先頭

©2009-2025 Movatter.jp