On Tuesday, May 03, 2011 10:33:03 PM Alvaro Herrera wrote:
> Excerpts from Josh Berkus's message of mar may 03 16:59:54 -0300 2011:
> > Hackers,
> >
> > And we have our first useful test reports. Please see these tests:
> >
> > 5/3/2011 8:01:29 -- issue with escaping quotes in functions.
>
> Is this about standard_conforming_strings flipping default?
The report on the website cites the example:
CREATE OR REPLACE FUNCTION test() RETURNS void AS '
DECLARE
BEGIN
SELECT \'test\';
END;
' LANGUAGE plpgsql;
So yes, thats standard_conforming_strings.
Andres