mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Silence compiler warning in nbtinsert.c.
Per buildfarm member longfin.
This commit is contained in:
@ -442,7 +442,7 @@ _bt_check_unique(Relation rel, BTInsertState insertstate, Relation heapRel,
|
|||||||
if (inposting || !ItemIdIsDead(curitemid))
|
if (inposting || !ItemIdIsDead(curitemid))
|
||||||
{
|
{
|
||||||
ItemPointerData htid;
|
ItemPointerData htid;
|
||||||
bool all_dead;
|
bool all_dead = false;
|
||||||
|
|
||||||
if (!inposting)
|
if (!inposting)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user