We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee5572e commit 2999063Copy full SHA for 2999063
src/backend/executor/execAmi.c
@@ -26,6 +26,7 @@
26
#include "executor/nodeForeignscan.h"
27
#include "executor/nodeFunctionscan.h"
28
#include "executor/nodeGather.h"
29
+#include "executor/nodeGatherMerge.h"
30
#include "executor/nodeGroup.h"
31
32
#include "executor/nodeHash.h"
@@ -172,6 +173,10 @@ ExecReScan(PlanState *node)
172
173
ExecReScanGather((GatherState *) node);
174
break;
175
176
+ case T_GatherMergeState:
177
+ ExecReScanGatherMerge((GatherMergeState *) node);
178
+ break;
179
+
180
case T_IndexScanState:
181
ExecReScanIndexScan((IndexScanState *) node);
182
0 commit comments