pgsql: Show GIDs of two-phase commit commands as constants in pg_stat_s

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Show GIDs of two-phase commit commands as constants in pg_stat_s
Дата
Msg-id E1qUdjI-001cmJ-N9@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Show GIDs of two-phase commit commands as constants in pg_stat_statements

This relies on the "location" field added to TransactionStmt in 31de7e6,
now applied to the "gid" field used by 2PC commands.  These commands are
now reported like:
COMMIT PREPARED $1
PREPARE TRANSACTION $1
ROLLBACK PREPARED $1

Applying constants for these commands is a huge advantage for workloads
that rely a lot on 2PC commands with different GIDs.  Some tests are
added to track the new behavior.

Reviewed-by: Julien Rouhaud
Discussion: https://postgr.es/m/ZMhT9kNtJJsHw6jK@paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/638d42a3c52081cf4882520f0622161bad69b40f

Modified Files
--------------
contrib/pg_stat_statements/expected/utility.out    | 23 ++++++++++++++++++++++
contrib/pg_stat_statements/pg_stat_statements.conf |  1 +
contrib/pg_stat_statements/sql/utility.sql         | 10 ++++++++++
src/backend/parser/gram.y                          |  6 +++---
src/include/nodes/parsenodes.h                     |  3 ++-
5 files changed, 39 insertions(+), 4 deletions(-)


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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: Fix code indentation violations introduced by recent commit
Следующее
От: Noah Misch
Дата:
Сообщение: pgsql: Fix off-by-one in XLogRecordMaxSize check.