From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Marko Tiikkaja <marko(at)joh(dot)to> |
Cc: | pgsql-bugs(at)postgresql(dot)org |
Subject: | Re: [BUGS] BUG #11500: PRIMARY KEY index not being used |
Date: | 2025-10-03 14:31:12 |
Message-ID: | 1314567.1759501872@sss.pgh.pa.us |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
Marko Tiikkaja <marko(at)joh(dot)to> writes:
> ... we have a frequent query like this:
> SELECT ..
> FROM orders
> WHERE
> order_id = $1 AND
> state = 'WAIT_EVENT';
> which almost always uses the primary key. But sometimes, perhaps
> after an autovacuum or something, something changes and postgres
> decides to start serving that query through the orders_wait_event_idx
> index.
You haven't given us a lot to go on: no reproducible test case,
no clear description of what triggers the issue, not even the complete
EXPLAIN output for the problem query. But it's hard to believe that
the planner would estimate a probe on a unique index as costing more
than 94812.85 units, which is what this fragment seems to suggest.
If you look at eqsel() you will observe that the presence of a
unique index overrides any information from statistics, so there
is no "casino" behavior here IMO: it should realize that
"order_id = $1" selects a single row no matter what.
I'm wondering if it didn't use that index because it *couldn't* use
that index, for who-knows-what reason. There are operations that
will leave an index marked as invalid and hence unsafe to query on.
Anyway, -EINSUFFICIENTINFORMATION.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2025-10-03 18:48:59 | Re: BUG #19071: commit b448f1c8d broke LEFT JOIN pushdown |
Previous Message | Etsuro Fujita | 2025-10-03 11:00:16 | Re: TRAP: failed Assert("outerPlan != NULL") in postgres_fdw.c |