pgsql: Remove trace_recovery_messages

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove trace_recovery_messages
Date: 2023-12-11 10:50:24
Message-ID: E1rCdrj-009ept-UO@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove trace_recovery_messages

This GUC was intended as a debugging help in the 9.0 area when hot
standby and streaming replication were being developped, able to offer
more information at LOG level rather than DEBUGn. There are more tools
available these days that are able to offer rather equivalent
information, like pg_waldump introduced in 9.3. It is not obvious how
this facility is useful these days, so let's remove it.

Author: Bharath Rupireddy
Discussion: https://postgr.es/m/ZXEXEAUVFrvpquSd@paquier.xyz

Branch
------
master

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

Modified Files
--------------
doc/src/sgml/config.sgml | 26 --------------------------
src/backend/access/transam/xlog.c | 2 +-
src/backend/access/transam/xlogrecovery.c | 4 +---
src/backend/storage/ipc/procarray.c | 20 ++++++++++----------
src/backend/storage/ipc/standby.c | 11 +++++------
src/backend/utils/cache/inval.c | 5 ++---
src/backend/utils/error/elog.c | 26 --------------------------
src/backend/utils/misc/guc_tables.c | 18 ------------------
src/include/miscadmin.h | 4 ----
9 files changed, 19 insertions(+), 97 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2023-12-11 10:55:57 pgsql: Simplify productions for FORMAT JSON [ ENCODING name ]
Previous Message Amit Kapila 2023-12-11 03:33:07 pgsql: Fix an undetected deadlock due to apply worker.