Re: Why is this query running slowly? - Mailing list pgsql-general

From Tomas Vondra
Subject Re: Why is this query running slowly?
Date
Msg-id 396b58982d6a5fa4bb8d3196e67e2125.squirrel@sq.gransy.com
Whole thread Raw
In response to Re: Why is this query running slowly?  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Why is this query running slowly?
List pgsql-general
On 15 Září 2011, 16:26, Tom Lane wrote:
> Yang Zhang <yanghatespam@gmail.com> writes:
>> On Thu, Sep 15, 2011 at 1:22 AM, Tomas Vondra <tv@fuzzy.cz> wrote:
>>> [ use a left join instead of NOT IN ]
>
>> This worked great, thank you.  Too bad the planner isn't smart enough
>> to do this yet!
>
> It never will be, because they're not equivalent queries.  NOT IN has
> different (and very hard-to-optimize) behavior in the face of NULLs in
> the right-hand table.

True, but in this case the subquery selects a PK column (at least I
believe so, we haven't seen the structure), so there should be no NULLs.
So the result should be the same.

Could the planner do this reasoning, i.e. see if there's a NOT NULL
constraint on the column and change the plan accordingly?

Tomas


pgsql-general by date:

Previous
From: Harald Fuchs
Date:
Subject: PostgreSQL 9.1.0 bug?
Next
From: Rich Shepard
Date:
Subject: Re: Cryptic Error Message Importing Table Dump [RESOLVED]