Re: Removing Inner Joins - Mailing list pgsql-hackers

From Hannu Krosing
Subject Re: Removing Inner Joins
Date
Msg-id 51DD1032.8060603@2ndQuadrant.com
Whole thread Raw
In response to Re: Removing Inner Joins  (Atri Sharma <atri.jiit@gmail.com>)
Responses Re: Removing Inner Joins
Re: Removing Inner Joins
List pgsql-hackers
On 07/10/2013 09:18 AM, Atri Sharma wrote:
>> Can you please post an example of such a join removal? I mean a query before
>> and after the removal. Thanks,
> Courtesy Robert Haas:
>
> SELECT foo.x, foo.y, foo.z FROM foo WHERE foo.x = bar.x
>
> Conditions:
>
> 1) foo.x is not null.
I guess that this is also not needed. you can just remove rows where

foo.x is null

That is, replace the join with "foo.x is not null"
>
> 2) foo (x) is a foreign key referencing bar (x).
>
> We can ignore bar completely in this case i.e. avoid scanning bar.
>
> Regards,
>
> Atri
>
>
> --
> Regards,
>
> Atri
> l'apprenant
>
>


-- 
Hannu Krosing
PostgreSQL Consultant
Performance, Scalability and High Availability
2ndQuadrant Nordic OÜ




pgsql-hackers by date:

Previous
From: Atri Sharma
Date:
Subject: Re: Removing Inner Joins
Next
From: Craig Ringer
Date:
Subject: Re: robots.txt on git.postgresql.org