Re: [GENERAL] index duplicates primary key, but is used more?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [GENERAL] index duplicates primary key, but is used more?
Дата
Msg-id 31354.1496445111@sss.pgh.pa.us
обсуждение исходный текст
Ответ на [GENERAL] index duplicates primary key, but is used more?  (jonathan vanasco <postgres@2xlp.com>)
Список pgsql-general
jonathan vanasco <postgres@2xlp.com> writes:
> What I noticed when checking stats earlier, is that although `idx_test_foo_id_asc` is the same as the PKEY... it was
usedabout 10x more than the pkey. 

> Does anyone know of this is just random (perhaps due to the name being sorted earlier) or there is some other reason
thatindex would be selected ? 

It's almost certainly just an artifact.  The planner considers a table's
indexes in OID order.  I don't recall offhand whether it would keep the
first or last of a series of identical-cost plans, but it'd be one or the
other of those behaviors; it would not continue to consider both indexes
once it noticed the plans were the same.

One thing that could favor a newer index is that it probably has somewhat
less bloat in it, resulting in a fractionally smaller cost estimate.  This
doesn't make it better in any absolute sense; reindexing the older index
would reverse that preference, at least for a time.

            regards, tom lane


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

Предыдущее
От: jonathan vanasco
Дата:
Сообщение: [GENERAL] index duplicates primary key, but is used more?
Следующее
От: Steven Chang
Дата:
Сообщение: Re: [GENERAL] index duplicates primary key, but is used more?