Updated min ef_search to 1 [skip ci]

This commit is contained in:
Andrew Kane
2023-08-10 20:47:15 -07:00
parent ded8bda72a
commit 1a0d7bccc7
4 changed files with 6 additions and 6 deletions

View File

@@ -18,8 +18,8 @@ SHOW hnsw.ef_search;
40
(1 row)
SET hnsw.ef_search = 9;
ERROR: 9 is outside the valid range for parameter "hnsw.ef_search" (10 .. 1000)
SET hnsw.ef_search = 0;
ERROR: 0 is outside the valid range for parameter "hnsw.ef_search" (1 .. 1000)
SET hnsw.ef_search = 1001;
ERROR: 1001 is outside the valid range for parameter "hnsw.ef_search" (10 .. 1000)
ERROR: 1001 is outside the valid range for parameter "hnsw.ef_search" (1 .. 1000)
DROP TABLE t;