Re: WARNING: nonstandard use of escape in a string literal

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: WARNING: nonstandard use of escape in a string literal
Date: 2009-12-23 21:13:30
Message-ID: 4B3287FA.2040502@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Bill Moran wrote:
> You need to spend some quality time with the documentation. Seriously,
> the issue _is_ confusing, but the docs explain it all, if you take the
> time to read all of it.
>
> To directly answer your question, \s is not a recognized escape sequence,
> so PG passes it unchanged.
>
> However, if you were trying to pass a \f, you would need to escape the \,
> like this '\\f', otherwise the \f would be converted to a form feed before
> LIKE ever saw it.
>

and, naturally, this gets even more complicated and confusing when the
string is a literal in a C/Perl/etc program that has its OWN escaping
going on.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2009-12-23 21:20:58 Re: WARNING: nonstandard use of escape in a string literal
Previous Message Bill Moran 2009-12-23 20:52:18 Re: WARNING: nonstandard use of escape in a string literal