Re: Odd explain estimate - Mailing list pgsql-performance

From Andrew Sullivan
Subject Re: Odd explain estimate
Date
Msg-id 20030731205921.GF16230@libertyrms.info
Whole thread Raw
In response to Odd explain estimate  ("Jim C. Nasby" <jim@nasby.net>)
Responses Re: Odd explain estimate  ("Jim C. Nasby" <jim@nasby.net>)
List pgsql-performance
On Thu, Jul 31, 2003 at 02:51:45PM -0500, Jim C. Nasby wrote:
> Why is pgsql estimating a cost of 100000000 for retire_today in this
> query? I analyzed it, and there's nothing very odd about it, other than
> it's a temp table.
>
> BTW, I had to set enable_seqscan=false to get this, otherwise it wants

That's why.  When you do that, it just automatically adds 100000000
to the cost of a seqscan.  It can't really disable it, because there
might be no other way to pull the result.

If you really needed to set enable_seqscan=false (did you really?
Are you sure that's not the cheapest way?), you might want to
investigate expainding the statistics on the indexed column,
increasing the correlation through clustering, and other such tricks.

A

--
----
Andrew Sullivan                         204-4141 Yonge Street
Liberty RMS                           Toronto, Ontario Canada
<andrew@libertyrms.info>                              M2P 2A8
                                         +1 416 646 3304 x110


pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: EXTERNAL storage and substring on long strings
Next
From: Joe Conway
Date:
Subject: Re: EXTERNAL storage and substring on long strings