Re: What type of index do I need for this JOIN? - Mailing list pgsql-general

From Robert James
Subject Re: What type of index do I need for this JOIN?
Date
Msg-id CAGYyBgi=nkTWLca+bvXsgv6_ffCD=L+FXJ0JtCZS_V+X04TawQ@mail.gmail.com
Whole thread Raw
In response to Re: What type of index do I need for this JOIN?  (Kevin Grittner <kgrittn@ymail.com>)
Responses Re: What type of index do I need for this JOIN?  (Kevin Grittner <kgrittn@ymail.com>)
List pgsql-general
On 8/14/13, Kevin Grittner <kgrittn@ymail.com> wrote:
> Robert James <srobertjames@gmail.com> wrote:
>
>> I'm confused: What's the difference between
>>   col LIKE  'foo%'
>> and
>>   col LIKE f1 || '%'
>> ?
>
> The planner knows that 'foo%' doesn't start with a wildcard.
>
>> Either way, it's anchored to the beginning of the string.
>
> Not necessarily.

I see, yes, f1 might include a wildcard.

Is there a way to escape f1 so that wildcards aren't interpreted?
That's anyway the behavior I need, of course.  And will that help the
planner?

What type of index will help the planner here?


pgsql-general by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: Getting list of supported types in Postgres
Next
From: Jayadevan M
Date:
Subject: Re: Debugging Postgres?