diff options
author | Michael Paquier | 2023-12-11 10:49:02 +0000 |
---|---|---|
committer | Michael Paquier | 2023-12-11 10:49:02 +0000 |
commit | c7a3e6b46d38f880f42642df003796b9bf99c1a8 (patch) | |
tree | c6e419196dce96b6e4709d55e312588c6406a61a /src/include/miscadmin.h | |
parent | 8d7d2197f31c1839db4726d1a12cb29016f4fa36 (diff) |
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
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index f0cc651435c..1043a4d7821 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -302,10 +302,6 @@ extern void PreventCommandIfReadOnly(const char *cmdname); extern void PreventCommandIfParallelMode(const char *cmdname); extern void PreventCommandDuringRecovery(const char *cmdname); -/* in utils/misc/guc_tables.c */ -extern PGDLLIMPORT int trace_recovery_messages; -extern int trace_recovery(int trace_level); - /***************************************************************************** * pdir.h -- * * POSTGRES directory path definitions. * |