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

Поиск
Список
Период
Сортировка
От David G. Johnston
Тема Re: BUG #17206: the function array_cat(anyarray, anyarray) does not exist
Дата
Msg-id CAKFQuwbKPYOuaexih1fMDPKa7kTjLSVjNdWCRHn7iJ2+oukpHg@mail.gmail.com
обсуждение исходный текст
Ответ на BUG #17206: the function array_cat(anyarray, anyarray) does not exist  (PG Bug reporting form <noreply@postgresql.org>)
Ответы Re: BUG #17206: the function array_cat(anyarray, anyarray) does not exist  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
On Thu, Sep 30, 2021 at 2:51 PM PG Bug reporting form <noreply@postgresql.org> wrote:
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

You may find this commit to be illuminating.  Work was done in this area for v14.


David J.

В списке pgsql-bugs по дате отправления:

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #17206: the function array_cat(anyarray, anyarray) does not exist
Следующее
От: PG Bug reporting form
Дата:
Сообщение: BUG #17207: Bad cost estimate of Merge Join despite correct row estimate