Updated default value of hnsw.scan_mem_multiplier [skip ci]

This commit is contained in:
Andrew Kane
2024-10-27 21:05:04 -07:00
parent 38f42820be
commit f9d627c9a9
3 changed files with 5 additions and 5 deletions

View File

@@ -91,7 +91,7 @@ HnswInit(void)
/* Same range and default as hash_mem_multiplier */
DefineCustomRealVariable("hnsw.scan_mem_multiplier", "Sets the multiple of work_mem to use for iterative scans",
NULL, &hnsw_scan_mem_multiplier,
2, 1, 1000, PGC_USERSET, 0, NULL, NULL, NULL);
1, 1, 1000, PGC_USERSET, 0, NULL, NULL, NULL);
MarkGUCPrefixReserved("hnsw");
}