Re: Why Index is not working on date columns.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Why Index is not working on date columns.
Дата
Msg-id 13279.1130247515@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Why Index is not working on date columns.  (Kishore B <kishorebh@gmail.com>)
Ответы Re: Why Index is not working on date columns.  (Kishore B <kishorebh@gmail.com>)
Список pgsql-performance
Kishore B <kishorebh@gmail.com> writes:
>  Can you guys please take a look at the following query and let me know why
> the index is not considered in the plan?

"Considered" and "used" are two different things.

The two examples you give have the same estimated cost (within two
decimal places) so the planner sees no particular reason to choose one
over the other.

I surmise that you are testing on toy tables and extrapolating to what
will happen on larger tables.  This is an unjustified assumption.
Create a realistic test data set, ANALYZE it, and then see if the
planner chooses indexes you like.

            regards, tom lane

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

Предыдущее
От: Rich Doughty
Дата:
Сообщение: Outer join query plans and performance
Следующее
От: "Markus Wollny"
Дата:
Сообщение: Re: Strange planner decision on quite simple select