Re: redundent index?

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема Re: redundent index?
Дата
Msg-id 1067440627.5789.2.camel@jester
обсуждение исходный текст
Ответ на redundent index?  (Robert Treat <xzilla@users.sourceforge.net>)
Ответы Re: redundent index?  (Manfred Koizar <mkoi-pg@aon.at>)
Список pgsql-performance
On Wed, 2003-10-29 at 09:03, Robert Treat wrote:
> I just noticed on one of my tables I have the following two indexes:
>
> Indexes: entity_watch_map_pkey primary key btree (entity_id, watch_id),
>          ewm_entity_id btree (entity_id),
>
>
> I can't think of why the second index is there, as ISTM there is no
> instance where the first index wouldn't be used in place of the second

The cost in evaluating the first index will be a little higher (more
data to pull off disk due to second item), so there may be a few
borderline cases that could switch to a sequential scan rather than an
index scan.

Вложения

В списке pgsql-performance по дате отправления:

Предыдущее
От: Damien Dougan
Дата:
Сообщение: Re: Very Poor Insert Performance
Следующее
От:
Дата:
Сообщение: PostgreSQL 7.4beta5 vs MySQL 4.0.16 with RT(DBIx::SearchBuilder)