doc: In FDW handler docs, mark up scan_clauses with .
authorRobert Haas
Mon, 5 May 2014 14:04:02 +0000 (10:04 -0400)
committerRobert Haas
Mon, 5 May 2014 14:04:02 +0000 (10:04 -0400)
Etsuro Fujita

doc/src/sgml/fdwhandler.sgml

index 9c818cd594364e591057fac2d83ef1c20e8b4962..6b5c8b7e97b3a6f2091e20892af67ac41fdeb088 100644 (file)
@@ -873,11 +873,11 @@ GetForeignServerByName(const char *name, bool missing_ok);
 
     
      In GetForeignPlan, generally the passed-in target list can
-     be copied into the plan node as-is.  The passed scan_clauses list
+     be copied into the plan node as-is.  The passed scan_clauses list
      contains the same clauses as baserel->baserestrictinfo,
      but may be re-ordered for better execution efficiency.  In simple cases
      the FDW can just strip RestrictInfo nodes from the
-     scan_clauses list (using extract_actual_clauses) and put
+     scan_clauses list (using extract_actual_clauses) and put
      all the clauses into the plan node's qual list, which means that all the
      clauses will be checked by the executor at run time.  More complex FDWs
      may be able to check some of the clauses internally, in which case those
@@ -895,7 +895,7 @@ GetForeignServerByName(const char *name, bool missing_ok);
      affect the cost estimate for the path.  The path's
      fdw_private field would probably include a pointer to
      the identified clause's RestrictInfo node.  Then
-     GetForeignPlan would remove that clause from scan_clauses,
+     GetForeignPlan would remove that clause from scan_clauses,
      but add the sub_expression to fdw_exprs
      to ensure that it gets massaged into executable form.  It would probably
      also put control information into the plan node's