| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | Bruce Momjian <bruce(at)momjian(dot)us> |
| Cc: | Mathieu Fenniak <hjoiiv(at)mathieu(dot)fenniak(dot)net>, pgsql-bugs(at)postgresql(dot)org |
| Subject: | Re: BUG #4436: (E'\\' LIKE E'\\') => f |
| Date: | 2008-09-24 20:00:54 |
| Message-ID: | 10530.1222286454@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-bugs |
Bruce Momjian <bruce(at)momjian(dot)us> writes:
> Mathieu Fenniak wrote:
>> I noticed that (SELECT E'\\' LIKE E'\\') returns false,
> I believe this is caused because backslash is the default escape
> character for LIKE, so you need:
> test=> SELECT E'\\' LIKE E'\\\\';
Yeah. The given case is actually an invalid LIKE pattern. I wonder
whether we should make LIKE throw error for an invalid pattern.
You get an error for the corresponding case in regex:
regression=# select E'\\' ~ E'\\';
ERROR: invalid regular expression: invalid escape \ sequence
but IIRC the LIKE code just silently ignores a trailing escape
character.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Joshua Tolley | 2008-09-25 16:05:17 | Incorrect "invalid AM/PM string" error from to_timestamp |
| Previous Message | Chirag Dave | 2008-09-24 19:29:59 | Postgres Stats after Crash Recovery |