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

Commit7100cbc

Browse files
committed
Fix cut-and-paste-o.
1 parent10d3995 commit7100cbc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎doc/src/sgml/ref/explain.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/explain.sgml,v 1.17 2002/03/2404:31:07 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/explain.sgml,v 1.18 2002/03/2416:57:29 tgl Exp $
33
PostgreSQL documentation
44
-->
55

@@ -220,13 +220,13 @@ EXPLAIN SELECT * FROM foo WHERE i = 4;
220220
using an aggregate function:
221221

222222
<programlisting>
223-
EXPLAIN SELECT sum(i) FROM foo WHERE i< 4;
223+
EXPLAIN SELECT sum(i) FROM foo WHERE i&lt; 10;
224224
<computeroutput>
225225
QUERY PLAN
226226
---------------------------------------------------------------------
227227
Aggregate (cost=23.93..23.93 rows=1 width=4)
228-
-> Index Scan using fi on foo (cost=0.00..23.92 rows=6 width=4)
229-
Index Filter: (i< 10)
228+
-&gt; Index Scan using fi on foo (cost=0.00..23.92 rows=6 width=4)
229+
Index Filter: (i&lt; 10)
230230
(3 rows)
231231
</computeroutput>
232232
</programlisting>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp