Re: DISTINCT Question - Mailing list pgsql-performance

From Scott Marlowe
Subject Re: DISTINCT Question
Date
Msg-id 1178656101.7497.29.camel@state.g2switchworks.com
Whole thread Raw
In response to DISTINCT Question  ("Y Sidhu" <ysidhu@gmail.com>)
List pgsql-performance
On Tue, 2007-05-08 at 14:52, Y Sidhu wrote:
> Does using DISTINCT in a query force PG to abandon any index search it
> might have embarked upon?

 explain analyze select distinct request from businessrequestsummary
where lastflushtime between now() - interval '30 minutes' and now();
                                                                                   QUERY PLAN

 

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 Unique  (cost=3.04..3.04 rows=1 width=17) (actual time=110.565..162.630
rows=75 loops=1)
   ->  Sort  (cost=3.04..3.04 rows=1 width=17) (actual
time=110.555..135.252 rows=6803 loops=1)
         Sort Key: request
         ->  Index Scan using businessrequestsummary_lastflushtime_dx on
businessrequestsummary  (cost=0.01..3.03 rows=1 width=17) (actual
time=0.063..59.674 rows=6803 loops=1)
               Index Cond: ((lastflushtime >= (now() -
'00:30:00'::interval)) AND (lastflushtime <= now()))
 Total runtime: 163.925 ms
(6 rows)

I'd say no.

pgsql-performance by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: DISTINCT Question
Next
From: Daniel Griscom
Date:
Subject: Throttling PostgreSQL's CPU usage