From: | Decibel! <decibel(at)decibel(dot)org> |
---|---|
To: | Richard Huxton <dev(at)archonet(dot)com>, PG Hackers <pgsql-hackers(at)postgresql(dot)org> |
Cc: | Luke Lonergan <LLonergan(at)greenplum(dot)com>, albert(at)sedifa(dot)com |
Subject: | Re: Posible planner improvement? |
Date: | 2008-05-24 18:49:46 |
Message-ID: | 1870DB98-E4E2-4DB5-8620-DB4A8309A73C@decibel.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-performance |
Moving to -hackers...
On May 21, 2008, at 9:09 AM, Richard Huxton wrote:
> Luke Lonergan wrote:
>> The problem is that the implied join predicate is not being
>> propagated. This is definitely a planner deficiency.
>
> IIRC only equality conditions are propagated and gt, lt, between
> aren't. I seem to remember that the argument given was that the
> cost of checking for the ability to propagate was too high for the
> frequency when it ocurred.
>
> Of course, what was true for code and machines of 5 years ago might
> not be so today.
Definitely...
How hard would it be to propagate all conditions (except maybe
functions, though perhaps the new function cost estimates make that
more practical) in cases of equality?
For reference, the original query as posted to -performance:
select * from t1, t2 where t1.id > 158507 and t1.id = t2.id;
That took > 84 minutes (the query was a bit longer but this is the
part that made the difference) after a little change the query took
~1 second:
select * from t1, t2 where t1.id > 158507 and t2.id > 158507 and
t1.id = t2.id;
--
Decibel!, aka Jim C. Nasby, Database Architect decibel(at)decibel(dot)org
Give your computer some brain candy! www.distributed.net Team #1828
From | Date | Subject | |
---|---|---|---|
Next Message | Sushant Sinha | 2008-05-24 21:18:57 | Re: [GENERAL] Fragments in tsearch2 headline |
Previous Message | Dickson S. Guedes | 2008-05-24 14:09:47 | Re: TODO item: Have psql show current values for a sequence |
From | Date | Subject | |
---|---|---|---|
Next Message | Decibel! | 2008-05-24 19:06:56 | Re: I/O on select count(*) |
Previous Message | Decibel! | 2008-05-24 17:55:15 | Re: shared_buffers performance |