From 2db1b19644182a8d48ef8d4fca63bfd8f290f0d4 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 27 Oct 2024 21:07:22 -0700 Subject: [PATCH] Use greater than [skip ci] --- src/hnswscan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnswscan.c b/src/hnswscan.c index 445b7ae..156e5e8 100644 --- a/src/hnswscan.c +++ b/src/hnswscan.c @@ -249,7 +249,7 @@ hnswgettuple(IndexScanDesc scan, ScanDirection dir) so->w = lappend(so->w, HnswGetSearchCandidate(w_node, pairingheap_remove_first(so->discarded))); } /* Prevent scans from consuming too much memory */ - else if (MemoryContextMemAllocated(so->tmpCtx, false) >= so->maxMemory) + else if (MemoryContextMemAllocated(so->tmpCtx, false) > so->maxMemory) { if (pairingheap_is_empty(so->discarded)) {