aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-08-31 12:36:18 +0530
committerRobert Haas <rhaas@postgresql.org>2016-08-31 12:36:18 +0530
commit530fb68e0f10ba921922e7b88403fcd2bd263742 (patch)
treec396fa749f55bd3604e154de11c3abd80f44e5c0 /src/include/nodes/execnodes.h
parent052cc223d5ce1b727f62afff75797c88d82f880b (diff)
downloadpostgresql-530fb68e0f10ba921922e7b88403fcd2bd263742.tar.gz
postgresql-530fb68e0f10ba921922e7b88403fcd2bd263742.zip
Update comments to reflect code rearrangement.
Commit f9143d102ffd0947ca904c62b1d3d6fd587e0c80 falsified these. KaiGai Kohei
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h3
1 files changed, 2 insertions, 1 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;