aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor/functions.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2024-03-12 18:16:10 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2024-03-12 18:16:25 -0400
commit6ee3261e9bb6f0aa30ec74896c57f69b0636bfdd (patch)
treeec5540bc8e9f32c06dc3f45695f25c57db48ebde /src/include/executor/functions.h
parentfe4750effd61f5a37d18c48caa53892dbdcfb96d (diff)
downloadpostgresql-6ee3261e9bb6f0aa30ec74896c57f69b0636bfdd.tar.gz
postgresql-6ee3261e9bb6f0aa30ec74896c57f69b0636bfdd.zip
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
Diffstat (limited to 'src/include/executor/functions.h')
-rw-r--r--src/include/executor/functions.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/executor/functions.h b/src/include/executor/functions.h
index 1590d1efa61..27f948c6f52 100644
--- a/src/include/executor/functions.h
+++ b/src/include/executor/functions.h
@@ -47,6 +47,7 @@ extern void check_sql_fn_statements(List *queryTreeLists);
extern bool check_sql_fn_retval(List *queryTreeLists,
Oid rettype, TupleDesc rettupdesc,
+ char prokind,
bool insertDroppedCols,
List **resultTargetList);