Remove useless variable stores
Mistakenly introduced in 4cbe3ac3e867; bug repaired in 148e632c0541 but the stores were accidentally.
This commit is contained in:
parent
6bc2769832
commit
a18422a3ad
@ -2368,7 +2368,6 @@ ExecInitModifyTable(ModifyTable *node, EState *estate, int eflags)
|
||||
* Initialize any WITH CHECK OPTION constraints if needed.
|
||||
*/
|
||||
resultRelInfo = mtstate->resultRelInfo;
|
||||
i = 0;
|
||||
foreach(l, node->withCheckOptionLists)
|
||||
{
|
||||
List *wcoList = (List *) lfirst(l);
|
||||
@ -2387,7 +2386,6 @@ ExecInitModifyTable(ModifyTable *node, EState *estate, int eflags)
|
||||
resultRelInfo->ri_WithCheckOptions = wcoList;
|
||||
resultRelInfo->ri_WithCheckOptionExprs = wcoExprs;
|
||||
resultRelInfo++;
|
||||
i++;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user