pgsql: Fix confusion about the return rowtype of SQL-language procedure

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix confusion about the return rowtype of SQL-language procedure
Дата
Msg-id E1rkAQI-003Tv1-GE@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix confusion about the return rowtype of SQL-language procedures.

There is a very ancient hack in check_sql_fn_retval that allows a
single SELECT targetlist entry of composite type to be taken as
supplying all the output columns of a function returning composite.
(This is grotty and fundamentally ambiguous, but it's really hard
to do nested composite-returning functions without it.)

As far as I know, that doesn't cause any problems in ordinary
functions.  It's disastrous for procedures however.  All procedures
that have any output parameters are labeled with prorettype RECORD,
and the CALL code expects it will get back a record with one column
per output parameter, regardless of whether any of those parameters
is composite.  Doing something else leads to an assertion failure
or core dump.

This is simple enough to fix: we just need to not apply that rule
when considering procedures.  However, that requires adding another
argument to check_sql_fn_retval, which at least in principle might be
getting called by external callers.  Therefore, in the back branches
convert check_sql_fn_retval into an ABI-preserving wrapper around a
new function check_sql_fn_retval_ext.

Per report from Yahor Yuzefovich.  This has been broken since we
implemented procedures, so back-patch to all supported branches.

Discussion: https://postgr.es/m/CABz5gWHSjj2df6uG0NRiDhZ_Uz=Y8t0FJP-_SVSsRsnrQT76Gg@mail.gmail.com

Branch
------
REL_16_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/40d1bdeb72b2d7dfa9e0d91785f0a056b719ebb1

Modified Files
--------------
src/backend/catalog/pg_proc.c                  |  7 +++---
src/backend/executor/functions.c               | 35 ++++++++++++++++++++------
src/backend/optimizer/util/clauses.c           | 14 ++++++-----
src/include/executor/functions.h               |  6 +++++
src/test/regress/expected/create_procedure.out | 14 ++++++++++-
src/test/regress/sql/create_procedure.sql      | 11 +++++++-
6 files changed, 69 insertions(+), 18 deletions(-)


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

Предыдущее
От: David Rowley
Дата:
Сообщение: pgsql: Fix incorrect filename reference in comment
Следующее
От: Jeff Davis
Дата:
Сообщение: pgsql: Fix version check in 002_pg_upgrade.pl.