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
530fb68e
Commit
530fb68e
authored
Aug 31, 2016
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update comments to reflect code rearrangement.
Commit
f9143d10
falsified these. KaiGai Kohei
parent
052cc223
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
src/include/nodes/execnodes.h
src/include/nodes/execnodes.h
+2
-1
src/include/nodes/plannodes.h
src/include/nodes/plannodes.h
+2
-1
src/include/nodes/relation.h
src/include/nodes/relation.h
+2
-1
No files found.
src/include/nodes/execnodes.h
View file @
530fb68e
...
...
@@ -1611,7 +1611,8 @@ struct CustomExecMethods;
typedef
struct
CustomScanState
{
ScanState
ss
;
uint32
flags
;
/* mask of CUSTOMPATH_* flags, see relation.h */
uint32
flags
;
/* mask of CUSTOMPATH_* flags, see
* nodes/extensible.h */
List
*
custom_ps
;
/* list of child PlanState nodes, if any */
Size
pscan_len
;
/* size of parallel coordination information */
const
struct
CustomExecMethods
*
methods
;
...
...
src/include/nodes/plannodes.h
View file @
530fb68e
...
...
@@ -560,7 +560,8 @@ struct CustomScanMethods;
typedef
struct
CustomScan
{
Scan
scan
;
uint32
flags
;
/* mask of CUSTOMPATH_* flags, see relation.h */
uint32
flags
;
/* mask of CUSTOMPATH_* flags, see
* nodes/extensible.h */
List
*
custom_plans
;
/* list of Plan nodes, if any */
List
*
custom_exprs
;
/* expressions that custom code may evaluate */
List
*
custom_private
;
/* private data for custom code */
...
...
src/include/nodes/relation.h
View file @
530fb68e
...
...
@@ -1087,7 +1087,8 @@ struct CustomPathMethods;
typedef
struct
CustomPath
{
Path
path
;
uint32
flags
;
/* mask of CUSTOMPATH_* flags, see above */
uint32
flags
;
/* mask of CUSTOMPATH_* flags, see
* nodes/extensible.h */
List
*
custom_paths
;
/* list of child Path nodes, if any */
List
*
custom_private
;
const
struct
CustomPathMethods
*
methods
;
...
...
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