Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2999063

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

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/backend/executor/execAmi.c

Lines changed: 5 additions & 0 deletions
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)