From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | jim(at)nasby(dot)net |
Cc: | pgsql-performance(at)postgresql(dot)org |
Subject: | Re: Hash or merge join instead of inner loop |
Date: | 2003-06-10 20:56:45 |
Message-ID: | 4799.1055278605@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
"Jim C. Nasby" <jim(at)nasby(dot)net> writes:
> On Tue, Jun 10, 2003 at 02:15:11AM -0400, Tom Lane wrote:
>> ... In reality, most of the upper btree levels will no doubt
>> stay in memory during such a query, and so this estimate charges many
>> more reads than really occur. Fixing this is on the todo list, but no
>> one's got to it yet. (It's not clear to me how to put the consideration
>> into the planner's cost algorithms in a clean way.)
> What about just ignoring all but the leaf pages?
IIRC, we already know what cost model we want to use. The problem is
that the planner's code structure makes it difficult for the indexscan
coster to know that the indexscan will be applied repeatedly rather than
just once. That's what has to be solved.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Josh Berkus | 2003-06-10 20:57:24 | Re: Re-ordering .CONF params ... questions for this list |
Previous Message | Joe Conway | 2003-06-10 20:05:14 | Re: Re-ordering .CONF params ... questions for this list |