Re: Need indexes on empty tables for good performance ?

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: "Lenard, Rohan (Rohan)" <rlenard(at)avaya(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Need indexes on empty tables for good performance ?
Date: 2005-08-27 06:19:49
Message-ID: 20050827061949.GB27248@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Tue, Aug 23, 2005 at 13:41:32 +1000,
"Lenard, Rohan (Rohan)" <rlenard(at)avaya(dot)com> wrote:
> I've read that indexes aren't used for COUNT(*) and I've noticed (7.3.x)
> with EXPLAIN that indexes never seem to be used on empty tables - is
> there any reason to have indexes on empty tables, or will postgresql
> never use them.

count will use indexes if appropiate. The counts themselves are NOT in the
indexes, so counts of significant fractions of a table (in particular
of the whole table) won't benefit from indexes.

You aren't going to get query speed ups by putting indexes on empty tables.
However, they may be required if you have unique or primary keys declared
in the table. You may want them to enforce some kinds of constraints.

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Chris Travers 2005-08-27 06:30:08 Re: Performance for relative large DB
Previous Message Greg Stark 2005-08-27 03:03:30 Re: Limit + group + join