pgsql: Run a portal's cleanup hook immediately when pushing it to FAILE

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Run a portal's cleanup hook immediately when pushing it to FAILE
Дата
Msg-id E1RxmFq-0007ZQ-Of@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Run a portal's cleanup hook immediately when pushing it to FAILED state.

This extends the changes of commit 6252c4f9e201f619e5eebda12fa867acd4e4200e
so that we run the cleanup hook earlier for failure cases as well as
success cases.  As before, the point is to avoid an assertion failure from
an Assert I added in commit a874fe7b4c890d1fe3455215a83ca777867beadd, which
was meant to check that no user-written code can be called during portal
cleanup.  This fixes a case reported by Pavan Deolasee in which the Assert
could be triggered during backend exit (see the new regression test case),
and also prevents the possibility that the cleanup hook is run after
portions of the portal's state have already been recycled.  That doesn't
really matter in current usage, but it foreseeably could matter in the
future.

Back-patch to 9.1 where the Assert in question was added.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/4bfe68dfab009ce8fcaea79dc0832eadf3380051

Modified Files
--------------
src/backend/commands/portalcmds.c          |    8 +++-
src/backend/tcop/pquery.c                  |    6 ++--
src/backend/utils/mmgr/portalmem.c         |   53 ++++++++++++++++++++++++----
src/include/utils/portal.h                 |    1 +
src/test/regress/expected/transactions.out |   33 ++++-------------
src/test/regress/sql/transactions.sql      |   13 ++++---
6 files changed, 72 insertions(+), 42 deletions(-)


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

Предыдущее
От: Robert Haas
Дата:
Сообщение: pgsql: Fix VPATH builds, broken by my recent commit to speed up tupleso
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Run a portal's cleanup hook immediately when pushing it to FAILE