Re: PL/pgSQL RAISE EXCEPTION ignores escape characters even with new E'' string syntax - Mailing list pgsql-bugs

From Tom Lane
Subject Re: PL/pgSQL RAISE EXCEPTION ignores escape characters even with new E'' string syntax
Date
Msg-id 27136.1182885679@sss.pgh.pa.us
Whole thread Raw
In response to PL/pgSQL RAISE EXCEPTION ignores escape characters even with new E'' string syntax  ("Donald Fraser" <postgres@kiwi-fraser.net>)
List pgsql-bugs
"Donald Fraser" <postgres@kiwi-fraser.net> writes:
> According to the release notes, PostgreSQL still handles escape =
> characters in strings as it has in the past, yet PL/pgSQL functions that =
> use escape characters within the string definition for RAISE EXCEPTION =
> are ignored, unless the function is created using the old style quote =
> definition (not $$).

I think you are confused.  plpgsql has never interpreted \n as a return;
if that's happening, it's in the string literal parser that eats the
function body string.

Looking at the source code, it appears that plpgsql's scanner treats
E'' and '' strings the same, which we probably should change sometime
(though the risks for breaking existing functions, perhaps with
unpleasant security implications, seem high).  But the examples you
give address what happens when the string is read by CREATE FUNCTION,
not what plpgsql does when running the function.

            regards, tom lane

pgsql-bugs by date:

Previous
From: "Donald Fraser"
Date:
Subject: PL/pgSQL RAISE EXCEPTION ignores escape characters even with new E'' string syntax
Next
From: "Geoff Taylor"
Date:
Subject: BUG #3414: client-only install fails due to parse.h file not found