Re: Regex query not using index

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Postgres User" <postgres(dot)developer(at)gmail(dot)com>
Cc: Chris <dmagick(at)gmail(dot)com>, "Erik Jones" <erik(at)myemma(dot)com>, pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: Regex query not using index
Date: 2008-02-20 05:45:36
Message-ID: 29085.1203486336@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

"Postgres User" <postgres(dot)developer(at)gmail(dot)com> writes:
> Yes that works, but the whole point of the exercise is replace many OR
> statements with 1 regex expression. So it's not what I'm looking for.

Unfortunately, Postgres is not as intelligent as you are. There is
no mechanism to rewrite a multi-branch regex condition into multiple
indexscans. I recommend going back to the OR's.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Postgres User 2008-02-20 05:52:17 Re: Regex query not using index
Previous Message Postgres User 2008-02-20 05:43:50 Re: Regex query not using index