Remove no-longer-needed loop in ExecGather().

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 0a8b9d3b2c57028f7100078cd711370f396d5a81
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2017-01-22T16:47:38Z
Releases: 10.0
Remove no-longer-needed loop in ExecGather().

Coverity complained quite properly that commit ea15e1867 had introduced
unreachable code into ExecGather(); to wit, it was no longer possible to
iterate the final for-loop more or less than once.  So remove the for().

In passing, clean up a couple of comments, and make better use of a local
variable.

Files

PathChange+/−
src/backend/executor/nodeGather.c modified +15 −24