aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/pathnodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/nodes/pathnodes.h')
-rw-r--r--src/include/nodes/pathnodes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/nodes/pathnodes.h b/src/include/nodes/pathnodes.h
index 1abe233db2b..c8a8eec6e2f 100644
--- a/src/include/nodes/pathnodes.h
+++ b/src/include/nodes/pathnodes.h
@@ -368,6 +368,10 @@ struct PlannerInfo
Relids curOuterRels; /* outer rels above current node */
List *curOuterParams; /* not-yet-assigned NestLoopParams */
+ /* These fields are workspace for setrefs.c */
+ bool *isAltSubplan; /* array corresponding to glob->subplans */
+ bool *isUsedSubplan; /* array corresponding to glob->subplans */
+
/* optional private data for join_search_hook, e.g., GEQO */
void *join_search_private;