diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-08-31 12:36:18 +0530 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-08-31 12:39:58 +0530 |
commit | a66be67820063dc3d880b2a5408714b877eec8ae (patch) | |
tree | 77535e894fd27eebdf7fad4aefb1a24a0f86c6d0 /src | |
parent | d9720e4377911d9d4157221ff362226f2169fe4c (diff) | |
download | postgresql-a66be67820063dc3d880b2a5408714b877eec8ae.tar.gz postgresql-a66be67820063dc3d880b2a5408714b877eec8ae.zip |
Update comments to reflect code rearrangement.
Commit f9143d102ffd0947ca904c62b1d3d6fd587e0c80 falsified these.
KaiGai Kohei
Diffstat (limited to 'src')
-rw-r--r-- | src/include/nodes/execnodes.h | 3 | ||||
-rw-r--r-- | src/include/nodes/plannodes.h | 3 | ||||
-rw-r--r-- | src/include/nodes/relation.h | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index e7fd7bd08ee..a4ea1b901ab 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -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; diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index bc5463b8f7f..e2fbc7d5a78 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -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 */ diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index 2be8908445b..b97b700ee45 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -1085,7 +1085,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; |