diff options
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r-- | src/include/nodes/execnodes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 939bc0ed734..58ec889b2f0 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -1963,7 +1963,9 @@ typedef struct GatherState PlanState ps; /* its first field is NodeTag */ bool initialized; struct ParallelExecutorInfo *pei; - struct TupleQueueFunnel *funnel; + int nreaders; + int nextreader; + struct TupleQueueReader **reader; TupleTableSlot *funnel_slot; bool need_to_scan_locally; } GatherState; |