8000 Updated GUC descriptions [skip ci] · postgrespro/pgvector@42af8aa · GitHub
[go: up one dir, main page]

Skip to content

Commit 42af8aa

Browse files
committed
Updated GUC descriptions [skip ci]
1 parent 9d15a76 commit 42af8aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hnsw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ HnswInit(void)
7878
"Valid range is 1..1000.", &hnsw_ef_search,
7979
HNSW_DEFAULT_EF_SEARCH, HNSW_MIN_EF_SEARCH, HNSW_MAX_EF_SEARCH, PGC_USERSET, 0, NULL, NULL, NULL);
8080

81-
DefineCustomEnumVariable("hnsw.iterative_search", "Sets iterative search mode",
81+
DefineCustomEnumVariable("hnsw.iterative_search", "Sets the iterative search mode",
8282
NULL, &hnsw_iterative_search,
8383
HNSW_ITERATIVE_SEARCH_OFF, hnsw_iterative_search_options, PGC_USERSET, 0, NULL, NULL, NULL);
8484

src/ivfflat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ IvfflatInit(void)
4141
"Valid range is 1..lists.", &ivfflat_probes,
4242
IVFFLAT_DEFAULT_PROBES, IVFFLAT_MIN_LISTS, IVFFLAT_MAX_LISTS, PGC_USERSET, 0, NULL, NULL, NULL);
4343

44-
DefineCustomEnumVariable("ivfflat.iterative_search", "Sets whether to use iterative search",
44+
DefineCustomEnumVariable("ivfflat.iterative_search", "Sets the iterative search mode",
4545
NULL, &ivfflat_iterative_search,
4646
IVFFLAT_ITERATIVE_SEARCH_OFF, ivfflat_iterative_search_options, PGC_USERSET, 0, NULL, NULL, NULL);
4747

0 commit comments

Comments
 (0)
0