@@ -513,7 +513,7 @@ typedef struct WorkTableScan
513513 * describing what is in the scan tuple's columns.
514514 *
515515 * fdw_recheck_quals should contain any quals which the core system passed to
516- * the FDW but which were not added to scan.plan.quals ; that is, it should
516+ * the FDW but which were not added to scan.plan.qual ; that is, it should
517517 * contain the quals being checked remotely. This is needed for correct
518518 * behavior during EvalPlanQual rechecks.
519519 *
@@ -529,7 +529,7 @@ typedef struct ForeignScan
529529List * fdw_exprs ;/* expressions that FDW may evaluate */
530530List * fdw_private ;/* private data for FDW */
531531List * fdw_scan_tlist ;/* optional tlist describing scan tuple */
532- List * fdw_recheck_quals ;/* original quals not in scan.plan.quals */
532+ List * fdw_recheck_quals ;/* original quals not in scan.plan.qual */
533533Bitmapset * fs_relids ;/* RTIs generated by this scan */
534534bool fsSystemCol ;/* true if any "system column" is needed */
535535}ForeignScan ;