Thanks to visit codestin.com
Credit goes to github.com

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

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/executor/nodeGather.c

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)