mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Add missing call to ExecReScanGatherMerge.
Amit Kapila Discussion: http://postgr.es/m/CAA4eK1KeQWZOoDmDmGMwuqzPW9JhRS+ditQVFdAfGjNmMZzqMQ@mail.gmail.com
This commit is contained in:
@ -26,6 +26,7 @@
|
|||||||
#include "executor/nodeForeignscan.h"
|
#include "executor/nodeForeignscan.h"
|
||||||
#include "executor/nodeFunctionscan.h"
|
#include "executor/nodeFunctionscan.h"
|
||||||
#include "executor/nodeGather.h"
|
#include "executor/nodeGather.h"
|
||||||
|
#include "executor/nodeGatherMerge.h"
|
||||||
#include "executor/nodeGroup.h"
|
#include "executor/nodeGroup.h"
|
||||||
#include "executor/nodeGroup.h"
|
#include "executor/nodeGroup.h"
|
||||||
#include "executor/nodeHash.h"
|
#include "executor/nodeHash.h"
|
||||||
@ -172,6 +173,10 @@ ExecReScan(PlanState *node)
|
|||||||
ExecReScanGather((GatherState *) node);
|
ExecReScanGather((GatherState *) node);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case T_GatherMergeState:
|
||||||
|
ExecReScanGatherMerge((GatherMergeState *) node);
|
||||||
|
break;
|
||||||
|
|
||||||
case T_IndexScanState:
|
case T_IndexScanState:
|
||||||
ExecReScanIndexScan((IndexScanState *) node);
|
ExecReScanIndexScan((IndexScanState *) node);
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user