1
0
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:
Peter Geoghegan
2020-02-26 13:17:36 -08:00
parent 0d861bbb70
commit 2d8a6fad18

View File

@ -442,7 +442,7 @@ _bt_check_unique(Relation rel, BTInsertState insertstate, Relation heapRel,
if (inposting || !ItemIdIsDead(curitemid))
{
ItemPointerData htid;
bool all_dead;
bool all_dead = false;
if (!inposting)
{