mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Add missing call to ExecReScanGatherMerge.
Amit Kapila Discussion: http://postgr.es/m/CAA4eK1KeQWZOoDmDmGMwuqzPW9JhRS+ditQVFdAfGjNmMZzqMQ@mail.gmail.com
This commit is contained in:
parent
ee5572e051
commit
29990634c7
1 changed files with 5 additions and 0 deletions
|
|
@ -26,6 +26,7 @@
|
|||
#include "executor/nodeForeignscan.h"
|
||||
#include "executor/nodeFunctionscan.h"
|
||||
#include "executor/nodeGather.h"
|
||||
#include "executor/nodeGatherMerge.h"
|
||||
#include "executor/nodeGroup.h"
|
||||
#include "executor/nodeGroup.h"
|
||||
#include "executor/nodeHash.h"
|
||||
|
|
@ -172,6 +173,10 @@ ExecReScan(PlanState *node)
|
|||
ExecReScanGather((GatherState *) node);
|
||||
break;
|
||||
|
||||
case T_GatherMergeState:
|
||||
ExecReScanGatherMerge((GatherMergeState *) node);
|
||||
break;
|
||||
|
||||
case T_IndexScanState:
|
||||
ExecReScanIndexScan((IndexScanState *) node);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue