Re: LIKE, leading percent, bind parameters and indexes

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Rodrigo Hjort" <rodrigo(dot)hjort(at)gmail(dot)com>
Cc: pgsql-hackers(at)postgresql(dot)org, "Rodrigo Hjort" <rhjort(at)celepar(dot)pr(dot)gov(dot)br>
Subject: Re: LIKE, leading percent, bind parameters and indexes
Date: 2006-05-24 02:55:23
Message-ID: 24934.1148439323@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

"Rodrigo Hjort" <rodrigo(dot)hjort(at)gmail(dot)com> writes:
> What happens is that only the "004" block uses the index! The "002" code,
> which also has no leading percent, does a sequential scan. The difference
> between them is that "002" uses bind parameters.

Yeah. The LIKE index optimization depends on seeing a constant LIKE
pattern at plan time --- otherwise the planner doesn't know what
indexscan parameters to generate. So a bound-parameter query loses.

Ideas for improving this situation are welcome ... it's not an easy
problem ...

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2006-05-24 02:58:42 Re: Why is CVS server so slow?
Previous Message max.poletto 2006-05-24 02:13:11 Re: problem with PQsendQuery/PQgetResult and COPY FROM statement