From a0fddf2d1dc5091c9c25840a66ace04dcdfe0e72 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 20 Sep 2024 16:24:20 -0700 Subject: [PATCH] Added todo [skip ci] --- src/hnsw.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hnsw.c b/src/hnsw.c index f4b2b2b..c81b556 100644 --- a/src/hnsw.c +++ b/src/hnsw.c @@ -131,6 +131,8 @@ hnswcostestimate(PlannerInfo *root, IndexPath *path, double loop_count, /* Account for number of tuples (or entry level), m, and ef_search */ costs.numIndexTuples = (entryLevel + 2) * m; + /* TODO Adjust for selectivity for iterative scans */ + genericcostestimate(root, path, loop_count, &costs); /* Use total cost since most work happens before first tuple is returned */