Commit 796092fb authored by Peter Geoghegan's avatar Peter Geoghegan

Silence another _bt_check_unique compiler warning.

Per complaint from Tom Lane

Discussion: https://postgr.es/m/1922884.1617909599@sss.pgh.pa.us
parent d1fcbde5
...@@ -408,7 +408,7 @@ _bt_check_unique(Relation rel, BTInsertState insertstate, Relation heapRel, ...@@ -408,7 +408,7 @@ _bt_check_unique(Relation rel, BTInsertState insertstate, Relation heapRel,
{ {
IndexTuple itup = insertstate->itup; IndexTuple itup = insertstate->itup;
IndexTuple curitup = NULL; IndexTuple curitup = NULL;
ItemId curitemid; ItemId curitemid = NULL;
BTScanInsert itup_key = insertstate->itup_key; BTScanInsert itup_key = insertstate->itup_key;
SnapshotData SnapshotDirty; SnapshotData SnapshotDirty;
OffsetNumber offset; OffsetNumber offset;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment