Re: [HACKERS] indexes and floats

Поиск
Список
Период
Сортировка
От Thomas G. Lockhart
Тема Re: [HACKERS] indexes and floats
Дата
Msg-id 35C54791.CCAEFDE9@alumni.caltech.edu
обсуждение исходный текст
Ответ на indexes and floats  (Vince Vielhaber <vev@michvhf.com>)
Ответы Re: [HACKERS] indexes and floats
Список pgsql-hackers
> Is this a bug that the index doesn't work on floats or is it a
> datatype mismatch thing?
> Seq Scan on foo  (cost=0.00 size=0 width=8)

Likely neither. Notice the cost of a sequential scan; it is zero. Why
bother doing an index scan?

You need at least two more things to happen to provoke Postgres into
using your index:

1) Have more entries in the table; rule of thumb is O(100) before an
index will be used.

2) Run vacuum after getting that many entries to make sure the optimizer
will know about the configuration of the tables and indices.

Good luck.

                   - Tom

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

Предыдущее
От: Mark Nielsen
Дата:
Сообщение: won't post here anymore, foudn better
Следующее
От: "Thomas G. Lockhart"
Дата:
Сообщение: Re: [HACKERS] TODO item: make pg_shadow updates more robust