BUG #17206: the function array_cat(anyarray, anyarray) does not exist

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: edouard(dot)hibon(at)free(dot)fr
Subject: BUG #17206: the function array_cat(anyarray, anyarray) does not exist
Date: 2021-09-30 20:54:19
Message-ID: 17206-f0a6b77a0a7b8499@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 17206
Logged by: Edouard HIBON
Email address: edouard(dot)hibon(at)free(dot)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

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message David G. Johnston 2021-09-30 22:49:03 Re: BUG #17206: the function array_cat(anyarray, anyarray) does not exist
Previous Message Sébastien Caunes 2021-09-30 14:10:52 Re: Bug report function to_date should reject HH24:MI:SS formatting options