Revert "Use int64 for wlen"

This reverts commit dbef8d1ad1.
This commit is contained in:
Andrew Kane
2023-09-02 18:09:10 -07:00
parent dbef8d1ad1
commit 01f58e470a

View File

@@ -550,7 +550,7 @@ HnswSearchLayer(Datum q, List *ep, int ef, int lc, Relation index, FmgrInfo *pro
List *w = NIL;
pairingheap *C = pairingheap_allocate(CompareNearestCandidates, NULL);
pairingheap *W = pairingheap_allocate(CompareFurthestCandidates, NULL);
int64 wlen = 0;
int wlen = 0;
HASHCTL hash_ctl;
HTAB *v;