Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a1c466c5
Commit
a1c466c5
authored
Oct 20, 2015
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix incorrect comment in plannodes.h
Etsuro Fujita
parent
dc486fb9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/include/nodes/plannodes.h
src/include/nodes/plannodes.h
+2
-2
No files found.
src/include/nodes/plannodes.h
View file @
a1c466c5
...
@@ -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.qual
s
; 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.qual
s
*/
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment