Re: slow count() - Mailing list pgsql-performance

From Bruno Wolff III
Subject Re: slow count()
Date
Msg-id 20050128053834.GA11394@wolff.to
Whole thread Raw
In response to slow count()  (Zavier Sheran <zsheran@yahoo.com>)
List pgsql-performance
On Thu, Jan 27, 2005 at 21:17:56 -0800,
  Zavier Sheran <zsheran@yahoo.com> wrote:
> quote from manual:
> --
> Unfortunately, there is no similarly trivial query
> that can be used to improve the performance of count()
> when applied to the entire table
> --
>
> does count(1) also cause a sequential scan of the
> entire table? It should be able to just use the
> primary keys.

No it can't just use the index file, so that an index scan will be slower
than the sequential scan unless there is a where clause restricting the
number of rows to a small fraction (about 5%) of the table.

Search the archives for if you want to read more about this.

pgsql-performance by date:

Previous
From: Thomas F.O'Connell
Date:
Subject: Triggers During COPY
Next
From: Josh Berkus
Date:
Subject: Re: Triggers During COPY