[BUGS] BUG #14834: quote_literal and composite types,different behaviour between sql and plpgsql - Mailing list pgsql-bugs

From dvd@gnx.it
Subject [BUGS] BUG #14834: quote_literal and composite types,different behaviour between sql and plpgsql
Date
Msg-id 20170928153517.28566.91850@wrigleys.postgresql.org
Whole thread Raw
Responses Re: [BUGS] BUG #14834: quote_literal and composite types, different behaviour between sql and plpgsql
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      14834
Logged by:          David Mugnai
Email address:      dvd@gnx.it
PostgreSQL version: 9.4.7
Operating system:   Linux
Description:

I found that `quote_literal` behaviour is wrong when used in a plpgsql
function over a null composite type, let me show:


create type t as (x text);

create function f(val t default null) returns text as $$select quote_literal(val);
$$ language sql stable;

create function f2(val t default null) returns text as $$
declareo text;
beginselect quote_literal(val) into o;return o;
end
$$ language plpgsql;

dvd@[local]/dvd> select f() union all select f2();  f
--------(null)'()'
(2 rows)


If I do not mistake the both the functions should returns NULL;


--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

pgsql-bugs by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: [BUGS] Row security policies using session variable can be circumvented
Next
From: nicola.contu@gmail.com
Date:
Subject: [BUGS] BUG #14835: Postgres crashed