Using backslash in query - Mailing list pgsql-hackers

From Michael Brusser
Subject Using backslash in query
Date
Msg-id DEEIJKLFNJGBEMBLBAHCIENFDLAA.michael@synchronicity.com
Whole thread Raw
In response to Re: PostgreSQL not ACID compliant?  ("Heikki Tuuri" <Heikki.Tuuri@innodb.com>)
Responses Re: Using backslash in query  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
I'm afraid I'm confused about something very simple... but anyway

I need to run a query on a varchar field containing a backslash.
My first attempt looked like this: SELECT smth. FROM  tbl WHERE situation LIKE '%\\%';
This did not returned any rows.

I looked up for a reference, confirmed that
"... double-backslash is required to represent a literal backslash."
http://www.postgresql.org/docs/aw_pgsql_book/node139.html#copy_backslash_han
dling

But when I doubled the number of backslashes: SELECT smth. FROM  tbl WHERE situation LIKE '%\\\\%';
- it actually worked fine.

Same thing happens with using regex: situation ~ '\\';

Could someone shed some light on this, please.

Mike.





pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Weird locking situation
Next
From: Bruno Wolff III
Date:
Subject: timestamp.c is broken (probably by ecpg) in 7.4