Commit a1c466c5 authored by Robert Haas's avatar Robert Haas

Fix incorrect comment in plannodes.h

Etsuro Fujita
parent dc486fb9
...@@ -513,7 +513,7 @@ typedef struct WorkTableScan ...@@ -513,7 +513,7 @@ typedef struct WorkTableScan
* describing what is in the scan tuple's columns. * describing what is in the scan tuple's columns.
* *
* fdw_recheck_quals should contain any quals which the core system passed to * fdw_recheck_quals should contain any quals which the core system passed to
* the FDW but which were not added to scan.plan.quals; that is, it should * the FDW but which were not added to scan.plan.qual; that is, it should
* contain the quals being checked remotely. This is needed for correct * contain the quals being checked remotely. This is needed for correct
* behavior during EvalPlanQual rechecks. * behavior during EvalPlanQual rechecks.
* *
...@@ -529,7 +529,7 @@ typedef struct ForeignScan ...@@ -529,7 +529,7 @@ typedef struct ForeignScan
List *fdw_exprs; /* expressions that FDW may evaluate */ List *fdw_exprs; /* expressions that FDW may evaluate */
List *fdw_private; /* private data for FDW */ List *fdw_private; /* private data for FDW */
List *fdw_scan_tlist; /* optional tlist describing scan tuple */ List *fdw_scan_tlist; /* optional tlist describing scan tuple */
List *fdw_recheck_quals; /* original quals not in scan.plan.quals */ List *fdw_recheck_quals; /* original quals not in scan.plan.qual */
Bitmapset *fs_relids; /* RTIs generated by this scan */ Bitmapset *fs_relids; /* RTIs generated by this scan */
bool fsSystemCol; /* true if any "system column" is needed */ bool fsSystemCol; /* true if any "system column" is needed */
} ForeignScan; } ForeignScan;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment