Re: BUG #5797: Strange bug with hstore

From: Maxim Boguk <maxim(dot)boguk(at)gmail(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5797: Strange bug with hstore
Date: 2010-12-26 05:29:06
Message-ID: AANLkTi=usxGXtuuR46XkFaeUpQFLSE1UvxCdVtbVZrq8@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Tue, Dec 21, 2010 at 7:48 AM, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> "Maxim Boguk" <Maxim(dot)Boguk(at)gmail(dot)com> writes:
>> Bad explain:
>> billing=# EXPLAIN SELECT * from domains where
>> name='"name"=>"somedomain"'::text::hstore->'name';
>>                                              QUERY PLAN
>> ----------------------------------------------------------------------------
>> ------------------------
>>  Seq Scan on domains  (cost=0.00..7775.91 rows=1 width=230)
>>    Filter: ((name)::text = (('"name"=>"somedomain"'::text)::hstore ->
>> 'name'::text))
>> (index not used)
>
> The reason for this is that hstore fails to label its I/O functions as
> immutable (or even stable) in 8.4.  This is fixed in 9.0.
>
>                        regards, tom lane
>

Sorry for late responce and thank you for clarification.

My research of that problem leads me to conclusion that can be fixed
on 8.4.4 with:
ALTER FUNCTION hstore_in(cstring) IMMUTABLE;
but is it really safe?
Or text->hstore conversion in 8.4 is really VOLATILE as labeled in
hstrore module?

Regards, Maxim

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Eric Schwarzenbach 2010-12-27 19:39:57 IN clause on BYTEA column works against table directly but gives error against view
Previous Message Robert Haas 2010-12-25 05:08:31 Re: BUG #5781: unaccent() function should be marked IMMUTABLE