aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-10-20 11:11:35 -0400
committerRobert Haas <rhaas@postgresql.org>2015-10-20 11:12:00 -0400
commitb3967f89370755176f4da03fb042e7e3e45999b5 (patch)
treeb103f517e296e1c91334e0e9684b80f541e90c07
parentb06f1f286d5b9beb10cf7dc365cdb7150064e191 (diff)
downloadpostgresql-b3967f89370755176f4da03fb042e7e3e45999b5.tar.gz
postgresql-b3967f89370755176f4da03fb042e7e3e45999b5.zip
Fix incorrect comment in plannodes.h
Etsuro Fujita
-rw-r--r--src/include/nodes/plannodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h
index 5fd45b7b95f..7a6a3fea479 100644
--- a/src/include/nodes/plannodes.h
+++ b/src/include/nodes/plannodes.h
@@ -510,7 +510,7 @@ typedef struct WorkTableScan
* describing what is in the scan tuple's columns.
*
* 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
* behavior during EvalPlanQual rechecks.
*
@@ -526,7 +526,7 @@ typedef struct ForeignScan
List *fdw_exprs; /* expressions that FDW may evaluate */
List *fdw_private; /* private data for FDW */
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 */
bool fsSystemCol; /* true if any "system column" is needed */
} ForeignScan;