I think this proposal is the same as [1], so you might want to read that thread.
1-
https://www.postgresql.org/message-id/flat/201DD0641B056142AC8C6645EC1B5F62014B919631%40SYD1217
On Thu, Jan 2, 2020 at 5:38 PM Justin Pryzby wrote:
>
> Is there any appetite for use of array initializer rather
Hi,
This commit is breaking some Postgis tests with custom types.
Here is a minimal repro (Postgis not required)
```
-- test custom types
create type t_custom_type AS (
valid bool,
reason varchar,
location varchar
);
create or replace function f_immutable_custom_type(i integer)
returns t_custom