From 4773931b1153682ac322b9d2280b052b0c0c6aa9 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 21 Sep 2024 12:28:12 -0700 Subject: [PATCH] Improved code [skip ci] --- src/hnsw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hnsw.c b/src/hnsw.c index c81b556..5ca9b8e 100644 --- a/src/hnsw.c +++ b/src/hnsw.c @@ -69,8 +69,8 @@ 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); - DefineCustomBoolVariable("hnsw.streaming", "todo", - "todo", &hnsw_streaming, + DefineCustomBoolVariable("hnsw.streaming", "Use streaming mode", + NULL, &hnsw_streaming, HNSW_DEFAULT_STREAMING, PGC_USERSET, 0, NULL, NULL, NULL); MarkGUCPrefixReserved("hnsw");