pgsql: Use more consistent names for wait event objects and types

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Use more consistent names for wait event objects and types
Date: 2023-09-06 01:07:40
Message-ID: E1qdh19-002b7X-M0@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use more consistent names for wait event objects and types

The event names use the same case-insensitive characters, hence applying
lower() or upper() to the monitoring queries allows the detection of the
same events as before this change. It is possible to cross-check the
data with the system view pg_wait_events, for instance, with a query
like that showing no differences:
SELECT lower(type), lower(name), description
FROM pg_wait_events ORDER BY 1, 2;

This will help in the introduction of more simplifications in the format
of wait_event_names. Some of the enum values in the code had to be
renamed a bit to follow the same convention naming across the board.

Reviewed-by: Bertrand Drouvot
Discussion: https://postgr.es/m/ZOxVHQwEC/9X/p/z(at)paquier(dot)xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/414f6c0fb79a23afa63bfd27375dbd688031dfd1

Modified Files
--------------
src/backend/libpq/pqmq.c | 2 +-
src/backend/replication/walsender.c | 2 +-
src/backend/storage/ipc/shm_mq.c | 6 +-
src/backend/utils/activity/wait_event_names.txt | 90 ++++++++++++-------------
4 files changed, 50 insertions(+), 50 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2023-09-06 01:27:34 pgsql: Remove column for wait event names in wait_event_names.txt
Previous Message Nathan Bossart 2023-09-06 00:03:00 pgsql: Move PG_TEMP_FILE* macros to file_utils.h.