Remove redundant initialization of a local variable.

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

Commit: 8c44802b6ed4846accb08e2ffe93040b8b42aae9
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2018-02-19T04:32:56Z
Releases: 11.0
Remove redundant initialization of a local variable.

In what was doubtless a typo, commit bf6c614a2 introduced a duplicate
initialization of a local variable.  This made Coverity unhappy, as well
as pretty much anybody reading the code.  We don't even have a real use
for the local variable, so just remove it.

Files

PathChange+/−
src/backend/executor/nodeGroup.c modified +1 −2