Re: index question - Mailing list pgsql-sql

From Tom Lane
Subject Re: index question
Date
Msg-id 9109.1003455570@sss.pgh.pa.us
Whole thread Raw
In response to index question  (Joseph Shraibman <jks@selectacast.net>)
List pgsql-sql
Joseph Shraibman <jks@selectacast.net> writes:
> Lets say I have a table with columns a and b.  I want to do a query like
> SELECT count(distinct b) WHERE a = 2;

> Should I have an index on a or an index on (a,b)?

At present, only an index on a will help any.  Our implementation of
count(distinct ...) isn't bright enough to make use of indexes.

Now an index on (a,b) can substitute for an index on a, so if you
have other queries that could use both columns of the (a,b) index
then it might be worth making that instead of an index on a.
        regards, tom lane


pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: When will vacuum go away?
Next
From: Joseph Shraibman
Date:
Subject: Re: When will vacuum go away?