From e2ba6cf38fe8bbb38affb74d66bff1bc8ca1c752 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 20 Sep 2024 21:33:46 -0700 Subject: [PATCH] Updated comment [skip ci] --- src/ivfflat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ivfflat.c b/src/ivfflat.c index fab7f7e..9e29724 100644 --- a/src/ivfflat.c +++ b/src/ivfflat.c @@ -82,7 +82,7 @@ EstimateProbes(PlannerInfo *root, IndexPath *path, int lists) { RestrictInfo *rinfo = lfirst(lc); - /* Skip DEFAULT_INEQ_SEL since it may be distance filter */ + /* Skip DEFAULT_INEQ_SEL since it may be a distance filter */ if (rinfo->norm_selec >= 0 && rinfo->norm_selec <= 1 && rinfo->norm_selec != (Selectivity) DEFAULT_INEQ_SEL) selectivity *= rinfo->norm_selec; }