From e7a913f3610ca46e342717015d8920fdeaa0942e Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 11 Aug 2023 10:11:01 -0700 Subject: [PATCH] Updated comment [skip ci] --- src/hnswinsert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnswinsert.c b/src/hnswinsert.c index 40b476d..bfd237d 100644 --- a/src/hnswinsert.c +++ b/src/hnswinsert.c @@ -512,7 +512,7 @@ HnswInsertTuple(Relation index, Datum *values, bool *isnull, ItemPointer heap_ti /* Get entry point */ entryPoint = HnswGetEntryPoint(index); - /* Special case for no entry point */ + /* Prevent concurrent inserts when no entry point */ if (entryPoint == NULL) { if (HnswAddEntryPoint(index, element, m, &entryPoint))