Sequential scan from simple query

From: "Leif B(dot) Kristensen" <leif(at)solumslekt(dot)org>
To: pgsql-general(at)postgresql(dot)org
Subject: Sequential scan from simple query
Date: 2007-05-23 14:31:48
Message-ID: 200705231631.48659.leif@solumslekt.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Can anybody tell me why the following query requires a full table scan?

pgslekt=> explain select person_id, last_edit from persons
order by last_edit desc, person_id desc limit 50;
QUERY PLAN
-------------------------------------------------------------------------
Limit (cost=1495.03..1495.15 rows=50 width=8)
-> Sort (cost=1495.03..1535.54 rows=16204 width=8)
Sort Key: last_edit, person_id
-> Seq Scan on persons (cost=0.00..362.04 rows=16204 width=8)
(4 rows)

'persons' is a regular table where person_id is the primary
key. 'last_edit' is a regular date field. I've also tried:

pgslekt=> create index last_edit_key on persons(last_edit);

But that doesn't make any difference.
--
Leif Biberg Kristensen | Registered Linux User #338009
http://solumslekt.org/ | Cruising with Gentoo/KDE
My Jazz Jukebox: http://www.last.fm/user/leifbk/

Responses

Browse pgsql-general by date

  From Date Subject
Next Message André Volpato 2007-05-23 14:39:11 Re: Faster data type for one-length values
Previous Message Richard Huxton 2007-05-23 14:30:48 Re: deleting/dropping tables...