Improved naming [skip ci]

This commit is contained in:
Andrew Kane
2026-06-30 02:46:31 -07:00
parent d053de2d94
commit cb246cb72d

View File

@@ -121,13 +121,13 @@ RemoveHeapTids(HnswVacuumState * vacuumstate)
if (!ItemPointerIsValid(&etup->heaptids[0])) if (!ItemPointerIsValid(&etup->heaptids[0]))
{ {
ItemPointerData ip; ItemPointerData indextid;
bool found; bool found;
/* Add to deletion list */ /* Add to deletion list */
ItemPointerSet(&ip, blkno, offno); ItemPointerSet(&indextid, blkno, offno);
tidhash_insert(vacuumstate->deleting, ip, &found); tidhash_insert(vacuumstate->deleting, indextid, &found);
Assert(!found); Assert(!found);
} }
else if (etup->level > highestLevel) else if (etup->level > highestLevel)