pgsql: Fix EXIT out of outermost block in plpgsql.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix EXIT out of outermost block in plpgsql.
Дата
Msg-id E1mPp2W-0004gG-L1@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix EXIT out of outermost block in plpgsql.

Ordinarily, using EXIT this way would draw "control reached end of
function without RETURN".  However, if the function is one where we
don't require an explicit RETURN (such as a DO block), that should
not happen.  It did anyway, because add_dummy_return() neglected to
account for the case.

Per report from Herwig Goemans.  Back-patch to all supported branches.

Discussion: https://postgr.es/m/868ae948-e3ca-c7ec-95a6-83cfc08ef750@gmail.com

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/a460f7eb3d5ab269fa72f0b4350e561ec158b0e7

Modified Files
--------------
src/pl/plpgsql/src/pl_comp.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: pgsql: doc: fix PG 14 release note typo
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Doc: improve documentation of CREATE/ALTER SUBSCRIPTION.