BUG #17206: the function array_cat(anyarray, anyarray) does not exist - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #17206: the function array_cat(anyarray, anyarray) does not exist
Date
Msg-id 17206-f0a6b77a0a7b8499@postgresql.org
Whole thread Raw
Responses Re: BUG #17206: the function array_cat(anyarray, anyarray) does not exist  ("David G. Johnston" <david.g.johnston@gmail.com>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      17206
Logged by:          Edouard HIBON
Email address:      edouard.hibon@free.fr
PostgreSQL version: 14.0
Operating system:   windows 10
Description:

Trying to create the following aggregate function :
CREATE AGGREGATE array_accum (anyarray)
(
    sfunc = array_cat,
    stype = anyarray,
    initcond = '{}'
);

I get the ERROR : the function array_cat(anyarray, anyarray) does not exist,
SQL state: 42883
whereas this works in PostGreSQL 13.4


pgsql-bugs by date:

Previous
From: Sébastien Caunes
Date:
Subject: Re: Bug report function to_date should reject HH24:MI:SS formatting options
Next
From: "David G. Johnston"
Date:
Subject: Re: BUG #17206: the function array_cat(anyarray, anyarray) does not exist