提交 7100cbc1 编写于 作者: T Tom Lane

Fix cut-and-paste-o.

上级 10d39950
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/explain.sgml,v 1.17 2002/03/24 04:31:07 tgl Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/ref/explain.sgml,v 1.18 2002/03/24 16:57:29 tgl Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -220,13 +220,13 @@ EXPLAIN SELECT * FROM foo WHERE i = 4; ...@@ -220,13 +220,13 @@ EXPLAIN SELECT * FROM foo WHERE i = 4;
using an aggregate function: using an aggregate function:
<programlisting> <programlisting>
EXPLAIN SELECT sum(i) FROM foo WHERE i < 4; EXPLAIN SELECT sum(i) FROM foo WHERE i &lt; 10;
<computeroutput> <computeroutput>
QUERY PLAN QUERY PLAN
--------------------------------------------------------------------- ---------------------------------------------------------------------
Aggregate (cost=23.93..23.93 rows=1 width=4) Aggregate (cost=23.93..23.93 rows=1 width=4)
-> Index Scan using fi on foo (cost=0.00..23.92 rows=6 width=4) -&gt; Index Scan using fi on foo (cost=0.00..23.92 rows=6 width=4)
Index Filter: (i < 10) Index Filter: (i &lt; 10)
(3 rows) (3 rows)
</computeroutput> </computeroutput>
</programlisting> </programlisting>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册