@@ -191,7 +191,7 @@ ExplainForeignScan (ForeignScanState *node,
191191 related functions to add fields to the <command>EXPLAIN</> output.
192192 The flag fields in <literal>es</> can be used to determine what to
193193 print, and the state of the <structname>ForeignScanState</> node
194- can be inspected to provideruntime statistics in the <command>EXPLAIN
194+ can be inspected to providerun-time statistics in the <command>EXPLAIN
195195 ANALYZE</> case.
196196 </para>
197197
@@ -489,20 +489,20 @@ GetForeignServerByName(const char *name, bool missing_ok);
489489 The <structfield>fdw_private</> list has no other restrictions and is
490490 not interpreted by the core backend in any way. The
491491 <structfield>fdw_exprs</> list, if not NIL, is expected to contain
492- expression trees that are intended to be executed atruntime . These
492+ expression trees that are intended to be executed atrun time . These
493493 trees will undergo post-processing by the planner to make them fully
494494 executable.
495495 </para>
496496
497497 <para>
498- In <function>GetForeignPlan</>, generally the passed-intargetlist can
498+ In <function>GetForeignPlan</>, generally the passed-intarget list can
499499 be copied into the plan node as-is. The passed scan_clauses list
500500 contains the same clauses as <literal>baserel->baserestrictinfo</>,
501501 but may be re-ordered for better execution efficiency. In simple cases
502502 the FDW can just strip <structname>RestrictInfo</> nodes from the
503503 scan_clauses list (using <function>extract_actual_clauses</>) and put
504504 all the clauses into the plan node's qual list, which means that all the
505- clauses will be checked by the executor atruntime . More complex FDWs
505+ clauses will be checked by the executor atrun time . More complex FDWs
506506 may be able to check some of the clauses internally, in which case those
507507 clauses can be removed from the plan node's qual list so that the
508508 executor doesn't waste time rechecking them.
@@ -523,9 +523,9 @@ GetForeignServerByName(const char *name, bool missing_ok);
523523 to ensure that it gets massaged into executable form. It would probably
524524 also put control information into the plan node's
525525 <structfield>fdw_private</> field to tell the execution functions what
526- to do atruntime . The query transmitted to the remote server would
526+ to do atrun time . The query transmitted to the remote server would
527527 involve something like <literal>WHERE <replaceable>foreign_variable</> =
528- $1</literal>, with the parameter value obtained atruntime from
528+ $1</literal>, with the parameter value obtained atrun time from
529529 evaluation of the <structfield>fdw_exprs</> expression tree.
530530 </para>
531531
@@ -541,7 +541,7 @@ GetForeignServerByName(const char *name, bool missing_ok);
541541 <literal>required_outer</> and list the specific join clause(s) in
542542 <literal>param_clauses</>. In <function>GetForeignPlan</>, the
543543 <replaceable>local_variable</> portion of the join clause would be added
544- to <structfield>fdw_exprs</>, and then atruntime the case works the
544+ to <structfield>fdw_exprs</>, and then atrun time the case works the
545545 same as for an ordinary restriction clause.
546546 </para>
547547