Re: Index on two columns not used

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: PostgreSQL Performance List <pgsql-performance(at)postgresql(dot)org>
Cc: Péter Kovács <peter(dot)kovacs(at)chemaxon(dot)hu>
Subject: Re: Index on two columns not used
Date: 2006-10-23 13:50:11
Message-ID: 20061023135011.GG7961@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Markus Schaber wrote:

> Additionally, in most UPDATE cases, the new row version will fit into
> the same page as the old version. In this case, the index does not have
> to be changed, which is an additional speed improvement.

Actually, when the UPDATE puts a new row version in the same heap page,
the index must be updated anyway. All the rest of what you said is
correct.

There is another reason not to put visibility info in the index, which
is that it would be extremely complex to update all indexes to contain
the right visibility (and maybe impossible without risking deadlocks).
Updating only the heap is very simple.

--
Alvaro Herrera http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Worky Workerson 2006-10-23 15:10:19 Re: Best COPY Performance
Previous Message Markus Schaber 2006-10-23 13:25:49 Re: Index on two columns not used