From 9c20550a41bb91994fd25745fc9dd3c62cc953c3 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 30 Oct 2024 12:54:42 -0700 Subject: [PATCH] Updated readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f776a43..5e36751 100644 --- a/README.md +++ b/README.md @@ -477,7 +477,7 @@ CREATE TABLE items (embedding vector(3), category_id int) PARTITION BY LIST(cate ## Iterative Index Scans -*Unreleased* +*Added in 0.8.0* With approximate indexes, queries with filtering can return less results since filtering is applied *after* the index is scanned. Starting with 0.8.0, you can enable iterative index scans, which will automatically scan more of the index until enough results are found (or it reaches `hnsw.max_scan_tuples` or `ivfflat.max_probes`).