mirror of
https://github.com/pgvector/pgvector.git
synced 2026-07-09 14:20:57 +08:00
Simplified GUC names [skip ci]
This commit is contained in:
@@ -174,12 +174,12 @@ SHOW hnsw.iterative_search;
|
||||
SET hnsw.iterative_search = on;
|
||||
ERROR: invalid value for parameter "hnsw.iterative_search": "on"
|
||||
HINT: Available values: off, relaxed_order, strict_order.
|
||||
SHOW hnsw.iterative_search_max_tuples;
|
||||
hnsw.iterative_search_max_tuples
|
||||
----------------------------------
|
||||
SHOW hnsw.max_search_tuples;
|
||||
hnsw.max_search_tuples
|
||||
------------------------
|
||||
-1
|
||||
(1 row)
|
||||
|
||||
SET hnsw.iterative_search_max_tuples = -2;
|
||||
ERROR: -2 is outside the valid range for parameter "hnsw.iterative_search_max_tuples" (-1 .. 2147483647)
|
||||
SET hnsw.max_search_tuples = -2;
|
||||
ERROR: -2 is outside the valid range for parameter "hnsw.max_search_tuples" (-1 .. 2147483647)
|
||||
DROP TABLE t;
|
||||
|
||||
@@ -137,14 +137,14 @@ SHOW ivfflat.iterative_search;
|
||||
SET ivfflat.iterative_search = on;
|
||||
ERROR: invalid value for parameter "ivfflat.iterative_search": "on"
|
||||
HINT: Available values: off, relaxed_order.
|
||||
SHOW ivfflat.iterative_search_max_probes;
|
||||
ivfflat.iterative_search_max_probes
|
||||
-------------------------------------
|
||||
SHOW ivfflat.max_probes;
|
||||
ivfflat.max_probes
|
||||
--------------------
|
||||
0
|
||||
(1 row)
|
||||
|
||||
SET ivfflat.iterative_search_max_probes = -1;
|
||||
ERROR: -1 is outside the valid range for parameter "ivfflat.iterative_search_max_probes" (0 .. 32768)
|
||||
SET ivfflat.iterative_search_max_probes = 32769;
|
||||
ERROR: 32769 is outside the valid range for parameter "ivfflat.iterative_search_max_probes" (0 .. 32768)
|
||||
SET ivfflat.max_probes = -1;
|
||||
ERROR: -1 is outside the valid range for parameter "ivfflat.max_probes" (0 .. 32768)
|
||||
SET ivfflat.max_probes = 32769;
|
||||
ERROR: 32769 is outside the valid range for parameter "ivfflat.max_probes" (0 .. 32768)
|
||||
DROP TABLE t;
|
||||
|
||||
Reference in New Issue
Block a user