pgsql: Remove plpgsql's special-case code paths for SET/RESET.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Remove plpgsql's special-case code paths for SET/RESET.
Дата
Msg-id E1lkSZT-0002wn-Uc@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Remove plpgsql's special-case code paths for SET/RESET.

In the wake of 84f5c2908, it's no longer necessary for plpgsql to
handle SET/RESET specially.  The point of that was just to avoid
taking a new transaction snapshot prematurely, which the regular code
path through _SPI_execute_plan() now does just fine (in fact better,
since it now does the right thing for LOCK too).  Hence, rip out a
few lines of code, going back to the old way of treating SET/RESET
as a generic SQL command.  This essentially reverts all but the
test cases from b981275b6.

Discussion: https://postgr.es/m/15990-eee2ac466b11293d@postgresql.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/30168be8f75b95183abccf48f0da7a64a0cfbd9f

Modified Files
--------------
.../plpgsql/src/expected/plpgsql_transaction.out   |  2 +-
src/pl/plpgsql/src/pl_exec.c                       | 37 ----------------------
src/pl/plpgsql/src/pl_funcs.c                      | 23 --------------
src/pl/plpgsql/src/pl_gram.y                       | 36 +--------------------
src/pl/plpgsql/src/pl_unreserved_kwlist.h          |  2 --
src/pl/plpgsql/src/plpgsql.h                       | 14 +-------
6 files changed, 3 insertions(+), 111 deletions(-)


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

Предыдущее
От: David Rowley
Дата:
Сообщение: pgsql: Fix planner's use of Result Cache with unique joins
Следующее
От: Bruce Momjian
Дата:
Сообщение: pgsql: Update PG 14 relnotes for vacuum_cost_page_miss