Re: posgres optimizer not using the index on hstore HELP - Mailing list pgsql-sql

From Steve Midgley
Subject Re: posgres optimizer not using the index on hstore HELP
Date
Msg-id CAJexoSJC9_en8GaF1knaznJd6HYnce6rObLWtz2yV4EcETO=SQ@mail.gmail.com
Whole thread Raw
In response to posgres optimizer not using the index on hstore HELP  (adam <adhamm31@hotmail.com>)
List 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 by date:

Previous
From: adam
Date:
Subject: posgres optimizer not using the index on hstore HELP
Next
From: Tom Lane
Date:
Subject: Re: posgres optimizer not using the index on hstore HELP