Re: posgres optimizer not using the index on hstore HELP

Поиск
Список
Период
Сортировка
От Steve Midgley
Тема Re: posgres optimizer not using the index on hstore HELP
Дата
Msg-id CAJexoSJC9_en8GaF1knaznJd6HYnce6rObLWtz2yV4EcETO=SQ@mail.gmail.com
обсуждение исходный текст
Ответ на posgres optimizer not using the index on hstore HELP  (adam <adhamm31@hotmail.com>)
Список pgsql-sql
On Mon, Jul 18, 2016 at 8:18 AM, adam <adhamm31@hotmail.com> wrote:
I have a simple query select on the hstore attribute "EMAIL_ADDRESS". but the
thing is i'm using a parameter in the query to specify which hstore
attribute I want to access, and when using a parameter the index which I
created is suppressed; whereas when I hard code the attribute
"EMAIL_ADDRESS" then the index is used. this is the index I created:

create index indx_email on contact using btree
((contact_attributes->'EMAIL_ADDRESS'::text));


the query is:

select * from contact where contact_attributes->$parameter =
"fqwefd@hotmail.com';


when I hardcode the attribute like below it the index is used.

select * from contact where contact_attributes->'EMAIL_ADDRESS' =
"fqwefd@hotmail.com';

Maybe you can share an EXPLAIN ANALYZE for both queries?

Steve 

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

Предыдущее
От: adam
Дата:
Сообщение: posgres optimizer not using the index on hstore HELP
Следующее
От: Tom Lane
Дата:
Сообщение: Re: posgres optimizer not using the index on hstore HELP