8000 Fix rebasing mistake in nodeGather.c · postgrespro/postgres_cluster@bf3d015 · GitHub
[go: up one dir, main page]

Skip to content

Commit bf3d015

Browse files
committed
Fix rebasing mistake in nodeGather.c
The patches committed as 6e71dd7 and 3a1f861 were developed in parallel but dependent on each other in a way that I failed to notice. This patch to fix the problem was prepared by Amit Kapila.
1 parent 89ff5c7 commit bf3d015

File tree

Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ gather_readnext(GatherState *gatherstate)
341341
--gatherstate->nreaders;
342342
if (gatherstate->nreaders == 0)
343343
{
344-
ExecShutdownGather(gatherstate);
344+
ExecShutdownGatherWorkers(gatherstate);
345345
return NULL;
346346
}
347347
else