Re: Would an index benefit select ... order by? - Mailing list pgsql-general

From rihad
Subject Re: Would an index benefit select ... order by?
Date
Msg-id 472D894A.3000500@mail.ru
Whole thread Raw
In response to Would an index benefit select ... order by?  (rihad <rihad@mail.ru>)
Responses Re: Would an index benefit select ... order by?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
>> Should an index be used on a created_at timestamp column if you know you
>> will be using "ORDER BY created_at ASC|DESC" from time to time?
>
> Yes.

Thanks. This is stated explicitly in 8.3 docs (as opposed to 8.2)

http://www.postgresql.org/docs/8.3/static/indexes-ordering.html


>  And you should use EXPLAIN.

You mean Postgres wouldn't *always* use created_at's index with such
access patterns on a big table (even if one exists):

select * from foo order by created_at desc;

?

Mind you the distribution of created_at values are going to be as
different as the time is (i.e. almost as many different values as there
are tables in the row).

pgsql-general by date:

Previous
From: Greg Smith
Date:
Subject: Re: young guy wanting (Postgres DBA) ammo
Next
From: Greg Smith
Date:
Subject: Re: What makes a Postgres DBA?