Re: BUG #19385: Normal SELECT generates an ineffecifient query plan compare to the prepared SELECT.

From: Andrei Lepikhov <lepihov(at)gmail(dot)com>
To: 798604270(at)qq(dot)com, pgsql-bugs(at)lists(dot)postgresql(dot)org, PG Bug reporting form <noreply(at)postgresql(dot)org>
Subject: Re: BUG #19385: Normal SELECT generates an ineffecifient query plan compare to the prepared SELECT.
Date: 2026-01-21 11:57:13
Message-ID: c8d276c5-9a50-4bfa-b06b-1d5dc84f8f30@gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On 21/1/26 07:53, PG Bug reporting form wrote:
> The following bug has been logged on the website:
>
> Bug reference: 19385
> Logged by: Chi Zhang
> Email address: 798604270(at)qq(dot)com
> PostgreSQL version: 18.1
> Operating system: ubuntu 24.04 with docker
> Description:
>
> Hi,
>
> In the following test case, there are two equivalent simple SELECTs with
> DISTINCT, however, the normal SELECT is slower than the prepared SELECT.
> Given that prepared SELECT statements typically generate suboptimal query
> plans due to the presence of unknown literals, one would expect prepared
> SELECT to be slower than normal SELECT. However, in this example, the
> prepared SELECT executes faster, suggesting that there may still be room for
> optimization in the query plan generation for normal SELECT.
There is no equivalence.

In the 'simple query' case with such a big LIMIT, you force the planner
to choose a full-scan-optimal path. In the generic case, the planner
uses 'magic constants' to provide some glue during planning, and LIMIT
10 is one of them, as we see from your example.

I once proposed an alternative solution: use a 'reference' value to
create a generic plan, as SQL Server does. If you're really interested
in such optimisation, support it!

--
regards, Andrei Lepikhov,
pgEdge

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Amit Langote 2026-01-21 12:58:13 Re: BUG #19099: Conditional DELETE from partitioned table with non-updatable partition raises internal error
Previous Message Pierre Forstmann 2026-01-21 11:42:50 Re: BUG #19386: Unnecessary Sort in query plan for SELECT literal with ORDER BY