From: | Sam Mason <sam(at)samason(dot)me(dot)uk> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: can't figure string compare result (using also custom C function) |
Date: | 2009-02-14 02:55:32 |
Message-ID: | 20090214025532.GR32672@frubble.xen.chris-lamb.co.uk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Fri, Feb 13, 2009 at 10:31:49PM +0100, Edoardo Panfili wrote:
> SELECT idSpecie,nome FROM specienomi
> WHERE idspecie=37026 and nome='X Agropogon littoralis (Sm.) C.E. Hubb.';
> idspecie | nome
> ----------+-----------------------------------------
> 37026 | X Agropogon littoralis (Sm.) C.E. Hubb.
>
> The same query but without one condition: no results.
>
> SELECT idSpecie,nome FROM specienomi
> WHERE nome='X Agropogon littoralis (Sm.) C.E. Hubb.';
> idspecie | nome
> ----------+------
> (0 rows)
>
> I can't figure why, can someone tell me how investigate?
I've just looked back in the archives and noticed that you were asking
about functional indexes; you do know that if you change the definition
of a function that PG doesn't know to rebuild the index don't you?
That would exhibit the symptoms you're seeing; i.e. the first case is
using an index on "idspecie" and the second is using the (out-of-date)
functional index.
--
Sam http://samason.me.uk/
From | Date | Subject | |
---|---|---|---|
Next Message | Scott Marlowe | 2009-02-14 03:40:30 | Re: Remote Connection |
Previous Message | John R Pierce | 2009-02-13 23:13:59 | Re: Remote Connection |