mirror of
https://github.com/postgres/postgres.git
synced 2026-04-25 08:08:08 -04:00
Remove useless variable stores
Mistakenly introduced in 4cbe3ac3e867; bug repaired in 148e632c05 but
the stores were accidentally.
This commit is contained in:
parent
6bc2769832
commit
a18422a3ad
1 changed files with 0 additions and 2 deletions
|
|
@ -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…
Reference in a new issue