From 83d410eae958dcdb5256b83b7104ec9b013409c4 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 13 Apr 2025 13:07:31 -0700 Subject: [PATCH] Updated readme [skip ci] --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 1ee996b..ef56d35 100644 --- a/README.md +++ b/README.md @@ -477,8 +477,6 @@ CREATE TABLE items (embedding vector(3), category_id int) PARTITION BY LIST(cate ## Iterative Index Scans -*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`). Iterative scans can use strict or relaxed ordering.