From 62482e3760ea015f678a5313e106e2168f9fc232 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Thu, 5 Oct 2023 16:15:13 -0700 Subject: [PATCH] Use e for consistency --- src/hnswutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnswutils.c b/src/hnswutils.c index 2c7378f..f1465d0 100644 --- a/src/hnswutils.c +++ b/src/hnswutils.c @@ -804,7 +804,7 @@ SelectNeighbors(List *c, int m, int lc, FmgrInfo *procinfo, Oid collation, HnswE { e->closer = CheckElementCloser(e, r, lc, procinfo, collation); if (e->closer) - added = lappend(added, newCandidate); + added = lappend(added, e); } if (e->closer)