Re: Or selection on index versus union - Mailing list pgsql-general

From Douglas McNaught
Subject Re: Or selection on index versus union
Date
Msg-id m2u0fw17vq.fsf@Douglas-McNaughts-Powerbook.local
Whole thread Raw
In response to Re: Or selection on index versus union  (han.holl@informationslogik.nl)
List pgsql-general
han.holl@informationslogik.nl writes:

> PS We still have to be careful how to formulate conditions:
>
> where fase in ('1','2')
>
> is ok, and uses the index, but the logically identical:
>
> where position(fase in '12') >= 1
>
> does a sequential scan.

Right, you would need a functional index to fix that.  The query
optimizer, in general, doesn't know what specific functions
do--they're black boxes.  So there would be no way for the optimizer
to figure out that the two expressions mean the same thing.

-Doug

pgsql-general by date:

Previous
From: Neil Dugan
Date:
Subject: Re: License question[VASCL:A1077160A86]
Next
From: Markus Schulz
Date:
Subject: Re: selfmade datatype in C and server-crash