mirror of
https://github.com/postgres/postgres.git
synced 2025-06-04 12:42:24 +03: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
@ -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…
x
Reference in New Issue
Block a user