mirror of
https://github.com/pgvector/pgvector.git
synced 2026-07-04 03:30:56 +08:00
Simplified GUC names [skip ci]
This commit is contained in:
@@ -102,8 +102,8 @@ SHOW hnsw.iterative_search;
|
||||
|
||||
SET hnsw.iterative_search = on;
|
||||
|
||||
SHOW hnsw.iterative_search_max_tuples;
|
||||
SHOW hnsw.max_search_tuples;
|
||||
|
||||
SET hnsw.iterative_search_max_tuples = -2;
|
||||
SET hnsw.max_search_tuples = -2;
|
||||
|
||||
DROP TABLE t;
|
||||
|
||||
@@ -81,9 +81,9 @@ SHOW ivfflat.iterative_search;
|
||||
|
||||
SET ivfflat.iterative_search = on;
|
||||
|
||||
SHOW ivfflat.iterative_search_max_probes;
|
||||
SHOW ivfflat.max_probes;
|
||||
|
||||
SET ivfflat.iterative_search_max_probes = -1;
|
||||
SET ivfflat.iterative_search_max_probes = 32769;
|
||||
SET ivfflat.max_probes = -1;
|
||||
SET ivfflat.max_probes = 32769;
|
||||
|
||||
DROP TABLE t;
|
||||
|
||||
Reference in New Issue
Block a user