Added tests for iterative index scan with empty index - resolves #679 [skip ci]

This commit is contained in:
Andrew Kane
2025-02-13 16:28:14 -08:00
parent 7cf9980696
commit 656b059258
4 changed files with 21 additions and 0 deletions

View File

@@ -59,6 +59,9 @@ SELECT * FROM t ORDER BY val <-> '[3,3,3]';
SET ivfflat.max_probes = 2;
SELECT * FROM t ORDER BY val <-> '[3,3,3]';
TRUNCATE t;
SELECT * FROM t ORDER BY val <-> '[3,3,3]';
RESET ivfflat.iterative_scan;
RESET ivfflat.max_probes;
DROP TABLE t;