First commit

This commit is contained in:
Andrew Kane
2021-04-20 14:04:28 -07:00
commit 6df7fa05b2
37 changed files with 3724 additions and 0 deletions

11
sql/ivfflat_options.sql Normal file
View File

@@ -0,0 +1,11 @@
SET client_min_messages = warning;
CREATE EXTENSION IF NOT EXISTS vector;
SET enable_seqscan = off;
CREATE TABLE t (val vector(3));
CREATE INDEX ON t USING ivfflat (val) WITH (lists = 0);
CREATE INDEX ON t USING ivfflat (val) WITH (lists = 32769);
SHOW ivfflat.probes;
DROP TABLE t;