Skip to content

Commit b3967f8

Browse files
committed
Fix incorrect comment in plannodes.h
Etsuro Fujita
1 parent b06f1f2 commit b3967f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/nodes/plannodes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ typedef struct WorkTableScan
510510
* describing what is in the scan tuple's columns.
511511
*
512512
* fdw_recheck_quals should contain any quals which the core system passed to
513-
* the FDW but which were not added to scan.plan.quals; that is, it should
513+
* the FDW but which were not added to scan.plan.qual; that is, it should
514514
* contain the quals being checked remotely. This is needed for correct
515515
* behavior during EvalPlanQual rechecks.
516516
*
@@ -526,7 +526,7 @@ typedef struct ForeignScan
526526
List *fdw_exprs; /* expressions that FDW may evaluate */
527527
List *fdw_private; /* private data for FDW */
528528
List *fdw_scan_tlist; /* optional tlist describing scan tuple */
529-
List *fdw_recheck_quals; /* original quals not in scan.plan.quals */
529+
List *fdw_recheck_quals; /* original quals not in scan.plan.qual */
530530
Bitmapset *fs_relids; /* RTIs generated by this scan */
531531
bool fsSystemCol; /* true if any "system column" is needed */
532532
} ForeignScan;

0 commit comments

Comments
 (0)