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

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #17206: the function array_cat(anyarray, anyarray) does not exist
Дата
Msg-id 17206-f0a6b77a0a7b8499@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #17206: the function array_cat(anyarray, anyarray) does not exist  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Sébastien Caunes
Дата:
Сообщение: Re: Bug report function to_date should reject HH24:MI:SS formatting options
Следующее
От: "David G. Johnston"
Дата:
Сообщение: Re: BUG #17206: the function array_cat(anyarray, anyarray) does not exist