Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1295a77

Browse files
committed
Add missing call to ExecReScanGatherMerge.
Amit Kapila Discussion: http://postgr.es/m/CAA4eK1KeQWZOoDmDmGMwuqzPW9JhRS+ditQVFdAfGjNmMZzqMQ@mail.gmail.com
1 parent 23d7680 commit 1295a77

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/backend/executor/execAmi.c

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include "executor/nodeForeignscan.h"
2727
#include "executor/nodeFunctionscan.h"
2828
#include "executor/nodeGather.h"
29+
#include "executor/nodeGatherMerge.h"
2930
#include "executor/nodeGroup.h"
3031
#include "executor/nodeGroup.h"
3132
#include "executor/nodeHash.h"
@@ -172,6 +173,10 @@ ExecReScan(PlanState *node)
172173
ExecReScanGather((GatherState *) node);
173174
break;
174175

176+
case T_GatherMergeState:
177+
ExecReScanGatherMerge((GatherMergeState *) node);
178+
break;
179+
175180
case T_IndexScanState:
176181
ExecReScanIndexScan((IndexScanState *) node);
177182
break;

0 commit comments

Comments
 (0)