mirror of
https://github.com/postgres/postgres.git
synced 2025-05-08 07:21:33 +03:00
Move return statements out of PG_TRY blocks.
If we exit a PG_TRY block early via "continue", "break", "goto", or "return", we'll skip unwinding its exception stack. This change moves a couple of such "return" statements in PL/Python out of PG_TRY blocks. This was introduced in d0aa965c0a and affects all supported versions. We might also be able to add compile-time checks to prevent recurrence, but that is left as a future exercise. Reported-by: Mikhail Gribkov, Xing Guo Author: Xing Guo Reviewed-by: Michael Paquier, Andres Freund, Tom Lane Discussion: https://postgr.es/m/CAMEv5_v5Y%2B-D%3DCO1%2Bqoe16sAmgC4sbbQjz%2BUtcHmB6zcgS%2B5Ew%40mail.gmail.com Discussion: https://postgr.es/m/CACpMh%2BCMsGMRKFzFMm3bYTzQmMU5nfEEoEDU2apJcc4hid36AQ%40mail.gmail.com Backpatch-through: 11 (all supported versions)
This commit is contained in:
parent
ccb479e76a
commit
825ebc9848
@ -413,15 +413,20 @@ static PyObject *
|
|||||||
PLy_function_build_args(FunctionCallInfo fcinfo, PLyProcedure *proc)
|
PLy_function_build_args(FunctionCallInfo fcinfo, PLyProcedure *proc)
|
||||||
{
|
{
|
||||||
PyObject *volatile arg = NULL;
|
PyObject *volatile arg = NULL;
|
||||||
PyObject *volatile args = NULL;
|
PyObject *args;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
PG_TRY();
|
/*
|
||||||
{
|
* Make any Py*_New() calls before the PG_TRY block so that we can quickly
|
||||||
|
* return NULL on failure. We can't return within the PG_TRY block, else
|
||||||
|
* we'd miss unwinding the exception stack.
|
||||||
|
*/
|
||||||
args = PyList_New(proc->nargs);
|
args = PyList_New(proc->nargs);
|
||||||
if (!args)
|
if (!args)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
PG_TRY();
|
||||||
|
{
|
||||||
for (i = 0; i < proc->nargs; i++)
|
for (i = 0; i < proc->nargs; i++)
|
||||||
{
|
{
|
||||||
PLyDatumToOb *arginfo = &proc->args[i];
|
PLyDatumToOb *arginfo = &proc->args[i];
|
||||||
@ -685,19 +690,34 @@ PLy_trigger_build_args(FunctionCallInfo fcinfo, PLyProcedure *proc, HeapTuple *r
|
|||||||
*pltlevel,
|
*pltlevel,
|
||||||
*pltrelid,
|
*pltrelid,
|
||||||
*plttablename,
|
*plttablename,
|
||||||
*plttableschema;
|
*plttableschema,
|
||||||
PyObject *pltargs,
|
*pltargs = NULL,
|
||||||
*pytnew,
|
*pytnew,
|
||||||
*pytold;
|
*pytold,
|
||||||
PyObject *volatile pltdata = NULL;
|
*pltdata;
|
||||||
char *stroid;
|
char *stroid;
|
||||||
|
|
||||||
PG_TRY();
|
/*
|
||||||
{
|
* Make any Py*_New() calls before the PG_TRY block so that we can quickly
|
||||||
|
* return NULL on failure. We can't return within the PG_TRY block, else
|
||||||
|
* we'd miss unwinding the exception stack.
|
||||||
|
*/
|
||||||
pltdata = PyDict_New();
|
pltdata = PyDict_New();
|
||||||
if (!pltdata)
|
if (!pltdata)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
if (tdata->tg_trigger->tgnargs)
|
||||||
|
{
|
||||||
|
pltargs = PyList_New(tdata->tg_trigger->tgnargs);
|
||||||
|
if (!pltargs)
|
||||||
|
{
|
||||||
|
Py_DECREF(pltdata);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
PG_TRY();
|
||||||
|
{
|
||||||
pltname = PLyUnicode_FromString(tdata->tg_trigger->tgname);
|
pltname = PLyUnicode_FromString(tdata->tg_trigger->tgname);
|
||||||
PyDict_SetItemString(pltdata, "name", pltname);
|
PyDict_SetItemString(pltdata, "name", pltname);
|
||||||
Py_DECREF(pltname);
|
Py_DECREF(pltname);
|
||||||
@ -837,12 +857,9 @@ PLy_trigger_build_args(FunctionCallInfo fcinfo, PLyProcedure *proc, HeapTuple *r
|
|||||||
int i;
|
int i;
|
||||||
PyObject *pltarg;
|
PyObject *pltarg;
|
||||||
|
|
||||||
pltargs = PyList_New(tdata->tg_trigger->tgnargs);
|
/* pltargs should have been allocated before the PG_TRY block. */
|
||||||
if (!pltargs)
|
Assert(pltargs);
|
||||||
{
|
|
||||||
Py_DECREF(pltdata);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
for (i = 0; i < tdata->tg_trigger->tgnargs; i++)
|
for (i = 0; i < tdata->tg_trigger->tgnargs; i++)
|
||||||
{
|
{
|
||||||
pltarg = PLyUnicode_FromString(tdata->tg_trigger->tgargs[i]);
|
pltarg = PLyUnicode_FromString(tdata->tg_trigger->tgargs[i]);
|
||||||
@ -863,6 +880,7 @@ PLy_trigger_build_args(FunctionCallInfo fcinfo, PLyProcedure *proc, HeapTuple *r
|
|||||||
}
|
}
|
||||||
PG_CATCH();
|
PG_CATCH();
|
||||||
{
|
{
|
||||||
|
Py_XDECREF(pltargs);
|
||||||
Py_XDECREF(pltdata);
|
Py_XDECREF(pltdata);
|
||||||
PG_RE_THROW();
|
PG_RE_THROW();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user