Stefan Keller <sfkeller(at)gmail(dot)com> writes:
> Any ideas on how to index my hstore attribute?
Use a GIST or GIN index. The only thing that a btree index on hstore
can do for you is to support equality comparisons on the whole hstore
value, which is pretty unlikely to be what you're after.
regards, tom lane