mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Avoid aggregating worker instrumentation multiple times.
Amit Kapila, per design ideas from me.
This commit is contained in:
@ -456,11 +456,7 @@ ExecReScanGather(GatherState *node)
|
||||
node->initialized = false;
|
||||
|
||||
if (node->pei)
|
||||
{
|
||||
ReinitializeParallelDSM(node->pei->pcxt);
|
||||
node->pei->tqueue =
|
||||
ExecParallelReinitializeTupleQueues(node->pei->pcxt);
|
||||
}
|
||||
ExecParallelReinitialize(node->pei);
|
||||
|
||||
ExecReScan(node->ps.lefttree);
|
||||
}
|
||||
|
Reference in New Issue
Block a user