Re: Join the same row

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Edison Azzi <edisonazzi@xxxxxxxxxxxx> writes:
> You are rigth, the planner will not eliminate the join, see:

> select * from cta_pag a, cta_pag p where a.nrlancto=p.nrlancto and 
> p.nrlancto = 21861;

> EXPLAIN:
> Nested Loop  (cost=0.00..11.48 rows=1 width=816)
>   ->  Index Scan using cta_pag_pk on cta_pag a  (cost=0.00..5.74 rows=1 
> width=408)
>         Index Cond: (21861::numeric = nrlancto)
>   ->  Index Scan using cta_pag_pk on cta_pag p  (cost=0.00..5.74 rows=1 
> width=408)
>         Index Cond: (nrlancto = 21861::numeric)

But do you care?  That second fetch of the same row isn't going to cost
much of anything, since everything it needs to touch will have been
sucked into cache already.  I don't really see the case for adding logic
to the planner to detect this particular flavor of badly-written query.

Notice that the planner *is* managing to propagate the constant
comparison to both relations.

			regards, tom lane


[Postgresql General]     [Postgresql PHP]     [PHP Users]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Yosemite]

  Powered by Linux