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

Commitb05204a

Browse files
committed
Fix some minor grammatical errors.
1 parent9392c40 commitb05204a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎doc/src/sgml/perform.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/perform.sgml,v 1.22 2002/11/11 20:14:03 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/perform.sgml,v 1.23 2003/01/12 18:42:59 tgl Exp $
33
-->
44

55
<chapter id="performance-tips">
@@ -600,7 +600,7 @@ SELECT * FROM a, b, c WHERE a.id = b.id AND b.ref = c.id;
600600
SELECT * FROM a CROSS JOIN b CROSS JOIN c WHERE a.id = b.id AND b.ref = c.id;
601601
SELECT * FROM a JOIN (b JOIN c ON (b.ref = c.id)) ON (a.id = b.id);
602602
</programlisting>
603-
butthe second and third take less time to plan than the first. This effect
603+
the second and third take less time to plan than the first. This effect
604604
is not worth worrying about for only three tables, but it can be a
605605
lifesaver with many tables.
606606
</para>
@@ -628,8 +628,8 @@ SELECT * FROM d LEFT JOIN
628628
(SELECT * FROM a, b, c WHERE ...) AS ss
629629
ON (...);
630630
</programlisting>
631-
Here, joining D must be the last step in the query plan, but the
632-
planner is free to consider various join orders for A, B, C.
631+
Here, joiningtoD must be the last step in the query plan, but the
632+
planner is free to consider various join orders for A, B,andC.
633633
</para>
634634

635635
<para>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp