Re: The planner chooses seqscan+sort when there is an - Mailing list pgsql-general

From Csaba Nagy
Subject Re: The planner chooses seqscan+sort when there is an
Date
Msg-id 1146674520.14093.185.camel@coppola.muc.ecircle.de
Whole thread Raw
In response to Re: The planner chooses seqscan+sort when there is an  ("John D. Burger" <john@mitre.org>)
Responses Re: The planner chooses seqscan+sort when there is an  (Martijn van Oosterhout <kleptog@svana.org>)
Re: The planner chooses seqscan+sort when there is an  ("Florian G. Pflug" <fgp@phlo.org>)
Re: The planner chooses seqscan+sort when there is an  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
> Docs say:
>
> > Enables or disables the query planner's use of sequential scan plan
> > types. It's not possible to suppress sequential scans entirely, but
> > turning this variable off discourages the planner from using one if
> > there are other methods available.
>
> Note the second sentence.  Again, I think it will have to scan the
> whole table anyway, because that's what you've asked for, and given
> that, enable_seqscan=off doesn't apply.

OK, maybe that's the point... the "cost bust" given to the sequential
scan by enable_seqscan=off is not enough in this case to exceed the cost
of the index scan ? The table is quite big, might be possible. I still
wonder why would be seqscan+sort faster than index scan... the sort will
for sure have to write to disk too given the size of the table...

Cheers,
Csaba.



pgsql-general by date:

Previous
From: "John D. Burger"
Date:
Subject: Re: The planner chooses seqscan+sort when there is an
Next
From: Martijn van Oosterhout
Date:
Subject: Re: The planner chooses seqscan+sort when there is an