Re: BUG #2125: SELECT problem with strings containing \ - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #2125: SELECT problem with strings containing \
Date
Msg-id 23146.1135697395@sss.pgh.pa.us
Whole thread Raw
In response to BUG #2125: SELECT problem with strings containing \  ("Tony" <tonya@ananzi.co.za>)
List pgsql-bugs
"Tony" <tonya@ananzi.co.za> writes:
> When running a query such as:
> select folder from public.folders
> where lower(folder) like '%c:\\1%'
> no rows are returned

This is not a bug --- you've forgotten that backslash is an escape
character in LIKE patterns.  You can either double it again:

    like '%c:\\\\1%'

or select a different escape character, or maybe better not have any
escape character at all:

    like '%c:\\1%' escape ''

See
http://www.postgresql.org/docs/8.1/static/functions-matching.html#FUNCTIONS-LIKE

            regards, tom lane

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #2126: Index usage for function value
Next
From: Bruce Momjian
Date:
Subject: Re: BUG #2124: Error "relation with OID ... does not exist" when