Re: Problem with index using regular expression - Mailing list psycopg

From Federico Di Gregorio
Subject Re: Problem with index using regular expression
Date
Msg-id 4DEC7A78.4030609@dndg.it
Whole thread Raw
In response to Problem with index using regular expression  (Håvard Wahl Kongsgård <haavard.kongsgaard@gmail.com>)
Responses Re: Problem with index using regular expression  (Håvard Wahl Kongsgård <haavard.kongsgaard@gmail.com>)
List psycopg
On 06/06/11 08:32, Håvard Wahl Kongsgård wrote:
> Hi, with psycopg 2-2.4.1 I have some issue with incorrect use of indexes
> using regular expression.
> I my case I have create on index on the surname of users.
> CREATE INDEX  income_surname ON income(substring(income.name
> <http://income.name> from E'\\w.*\\s(\\w.*)$|\\w+\\s(\\w.*)$'))
>
> then used
> SELECT Distinct On (nodes.id <http://nodes.id>) nodes.ID from nodes
> inner join income on substring(nodes.name <http://nodes.name> from
> E'\\w.*\\s(\\w.*)$|\\w+\\s(\\w.*)$') = substring(income.name
> <http://income.name> from E'\\w.*\\s(\\w.*)$|\\w+\\s(\\w.*)$')
>
> with psql the index works fine, but with psycopg I don't think it's used
> at all. The index substring has to be identical with the substring in
> the query. Are there some encoding issues with psycopg?

psycopg does encode your strings to the backend encoding but this
shouldn't be a problem. You can:

1) Send us the code so we can analyze it.
2) Enable PostgreSQL query logging and check the query sent by psycopg.
3) I feel you're doing something wrong with the '\' in the regular
   expression. Can you should us the Python of the execute() call?

federico

--
Federico Di Gregorio                         federico.digregorio@dndg.it
Studio Associato Di Nunzio e Di Gregorio                  http://dndg.it
                           There's no certainty - only opportunity. -- V

psycopg by date:

Previous
From: Håvard Wahl Kongsgård
Date:
Subject: Problem with index using regular expression
Next
From: Håvard Wahl Kongsgård
Date:
Subject: Re: Problem with index using regular expression