From: Tom Lane Date: Sun, 12 Jan 2003 18:42:59 +0000 (+0000) Subject: Fix some minor grammatical errors. X-Git-Tag: REL7_4_BETA1~1219 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b05204ac8a36ebe4f68823fdc47be2cde294621b;p=postgresql Fix some minor grammatical errors. --- diff --git a/doc/src/sgml/perform.sgml b/doc/src/sgml/perform.sgml index fb2dd96b03..4c150d5022 100644 --- a/doc/src/sgml/perform.sgml +++ b/doc/src/sgml/perform.sgml @@ -1,5 +1,5 @@ @@ -600,7 +600,7 @@ SELECT * FROM a, b, c WHERE a.id = b.id AND b.ref = c.id; SELECT * FROM a CROSS JOIN b CROSS JOIN c WHERE a.id = b.id AND b.ref = c.id; SELECT * FROM a JOIN (b JOIN c ON (b.ref = c.id)) ON (a.id = b.id); - but the second and third take less time to plan than the first. This effect + the second and third take less time to plan than the first. This effect is not worth worrying about for only three tables, but it can be a lifesaver with many tables. @@ -628,8 +628,8 @@ SELECT * FROM d LEFT JOIN (SELECT * FROM a, b, c WHERE ...) AS ss ON (...); - Here, joining D must be the last step in the query plan, but the - planner is free to consider various join orders for A, B, C. + Here, joining to D must be the last step in the query plan, but the + planner is free to consider various join orders for A, B, and C.