Re: Optimizer internals - Mailing list pgsql-performance

From Mark Lewis
Subject Re: Optimizer internals
Date
Msg-id 1150396425.31200.66.camel@archimedes
Whole thread Raw
In response to Optimizer internals  ("John Vincent" <pgsql-performance@lusis.org>)
Responses Re: Optimizer internals  ("John Vincent" <pgsql-performance@lusis.org>)
Re: Optimizer internals  (Mischa Sandberg <mischa@ca.sophos.com>)
Re: Optimizer internals  (Greg Stark <gsstark@mit.edu>)
List pgsql-performance
On Thu, 2006-06-15 at 14:05 -0400, John Vincent wrote:
> Now I've been told by our DBA that we should have been able to wholy
> satisfy that query via the indexes.

DB2 can satisfy the query using only indexes because DB2 doesn't do
MVCC.

Although MVCC is generally a win in terms of making the database easier
to use and applications less brittle, it also means that the database
must inspect the visibility information for each row before it can
answer a query.  For most types of queries this isn't a big deal, but
for count(*) type queries, it slows things down.

Since adding the visibility information to indexes would make them
significantly more expensive to use and maintain, it isn't done.
Therefore, each row has to be fetched from the main table anyway.

Since in this particular query you are counting all rows of the
database, PG must fetch each row from the main table regardless, so the
sequential scan is much faster because it avoids traversing the index
and performing random read operations.

-- Mark Lewis

pgsql-performance by date:

Previous
From: Zoltan Boszormenyi
Date:
Subject: Re: Precomputed constants?
Next
From: "John Vincent"
Date:
Subject: Re: Optimizer internals