Re: DISTINCT Question

From: Scott Marlowe <smarlowe(at)g2switchworks(dot)com>
To: Y Sidhu <ysidhu(at)gmail(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: DISTINCT Question
Date: 2007-05-08 20:28:22
Message-ID: 1178656101.7497.29.camel@state.g2switchworks.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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.

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Charles Sprickman 2007-05-08 20:49:58 Re: Best OS for Postgres 8.2
Previous Message Daniel Griscom 2007-05-08 20:27:10 Throttling PostgreSQL's CPU usage