Re: postgres chooses objectively wrong index

From: Andrei Lepikhov <lepihov(at)gmail(dot)com>
To: Merlin Moncure <mmoncure(at)gmail(dot)com>, Alexey Ermakov <alexius(dot)work(at)gmail(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-performance(at)lists(dot)postgresql(dot)org
Subject: Re: postgres chooses objectively wrong index
Date: 2026-03-19 07:09:33
Message-ID: 2a32c870-3f69-4b09-854d-ffea03b1e537@gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On 18/3/26 19:38, Merlin Moncure wrote:
> On Tue, Mar 17, 2026 at 11:27 PM Alexey Ermakov <alexius(dot)work(at)gmail(dot)com
> I think the planner is not giving enough bonus for an exact match versus
> an inexact match on partial index mathcing,  (A=A should be better than
> A IN(A,B,C)), and it's unclear why the planner things bitmap heap + sort
> is outperforming a raw read off the index base on marginal estimated row
> counts.  Lowering random_page_cost definitely biases the plan I like,
> but it skews both estimates.

One ongoing shortcoming is that cardinality estimation takes place early
in the optimisation process and uses all filter conditions. This can be
frustrating because a partial index covers just part of the table and
could give the optimiser better statistics. If we ignored the index
condition, we might get a more accurate estimate.

I haven’t tried to redesign this part myself. If it were simple, someone
likely would have fixed it by now. Maybe Tom has some ideas about it.

--
regards, Andrei Lepikhov,
pgEdge

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Merlin Moncure 2026-03-23 21:58:40 Re: postgres chooses objectively wrong index
Previous Message Merlin Moncure 2026-03-18 22:42:29 Re: postgres chooses objectively wrong index