From dd127da62a390f90c25d006824daa12ab0cde45f Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 22 Sep 2024 10:45:09 -0700 Subject: [PATCH] Added comments [skip ci] --- src/hnsw.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/hnsw.c b/src/hnsw.c index 5ca9b8e..3309966 100644 --- a/src/hnsw.c +++ b/src/hnsw.c @@ -69,10 +69,13 @@ HnswInit(void) "Valid range is 1..1000.", &hnsw_ef_search, HNSW_DEFAULT_EF_SEARCH, HNSW_MIN_EF_SEARCH, HNSW_MAX_EF_SEARCH, PGC_USERSET, 0, NULL, NULL, NULL); + /* TODO Figure out name */ DefineCustomBoolVariable("hnsw.streaming", "Use streaming mode", NULL, &hnsw_streaming, HNSW_DEFAULT_STREAMING, PGC_USERSET, 0, NULL, NULL, NULL); + /* TODO Add option for limiting iterative search */ + MarkGUCPrefixReserved("hnsw"); }