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.
This commit is contained in:
Tom Lane 2018-02-18 23:32:56 -05:00
parent ebf6049ebe
commit 8c44802b6e
1 changed files with 1 additions and 2 deletions

View File

@ -162,7 +162,6 @@ GroupState *
ExecInitGroup(Group *node, EState *estate, int eflags)
{
GroupState *grpstate;
AttrNumber *grpColIdx = grpColIdx = node->grpColIdx;
/* check for unsupported flags */
Assert(!(eflags & (EXEC_FLAG_BACKWARD | EXEC_FLAG_MARK)));
@ -209,7 +208,7 @@ ExecInitGroup(Group *node, EState *estate, int eflags)
grpstate->eqfunction =
execTuplesMatchPrepare(ExecGetResultType(outerPlanState(grpstate)),
node->numCols,
grpColIdx,
node->grpColIdx,
node->grpOperators,
&grpstate->ss.ps);