Re: postgres 7.4 vs 8.x redux: query plans

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: postgres 7.4 vs 8.x redux: query plans
Дата
Msg-id 12660.1175635265@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: postgres 7.4 vs 8.x redux: query plans  ("Alex Deucher" <alexdeucher@gmail.com>)
Ответы Re: postgres 7.4 vs 8.x redux: query plans
Re: postgres 7.4 vs 8.x redux: query plans
Re: postgres 7.4 vs 8.x redux: query plans
Список pgsql-performance
"Alex Deucher" <alexdeucher@gmail.com> writes:
> Turning off bitmapscan ends up doing a sequential scan.  Turning off
> both bitmapscan and seqscan results in a bitmap heap scan.  It doesn't
> seem to want to use the index at all.  Any ideas?

The "ORed indexscans" plan style that was in 7.4 isn't there anymore;
we use bitmap OR'ing instead.  There actually are repeated indexscans
hidden under the "= ANY" indexscan condition in 8.2, it's just that
the mechanism for detecting duplicate matches is different.  AFAIK the
index access costs ought to be about the same either way, and the other
costs the same or better as what we did in 7.4.  It's clear though that
8.2 is taking some kind of big hit in the index access in your case.
There's something very strange going on here.

You do have both lc_collate and lc_ctype set to C, right?  What about
database encoding?

            regards, tom lane

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

Предыдущее
От: "Alex Deucher"
Дата:
Сообщение: Re: postgres 7.4 vs 8.x redux: query plans
Следующее
От: "Alex Deucher"
Дата:
Сообщение: Re: postgres 7.4 vs 8.x redux: query plans