Fixed memory context leak in HnswUpdateNeighborsOnDisk - fixes #692

This commit is contained in:
Andrew Kane
2024-10-08 12:21:26 -07:00
parent 57248ba128
commit d5f4a0e435

View File

@@ -561,6 +561,8 @@ HnswUpdateNeighborsOnDisk(Relation index, FmgrInfo *procinfo, Oid collation, Hns
UpdateNeighborOnDisk(neighborElement, e, idx, m, lm, lc, index, checkExisting, building);
}
}
MemoryContextDelete(updateCtx);
}
/*