mirror of
https://github.com/postgres/postgres.git
synced 2025-07-14 08:21:07 +03:00
Revoke augmentation of WAL records for btree delete, per discussion.
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.537 2010/01/29 18:39:05 sriggs Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.538 2010/02/01 13:40:28 sriggs Exp $
|
||||
*
|
||||
*--------------------------------------------------------------------
|
||||
*/
|
||||
@ -1222,17 +1222,6 @@ static struct config_bool ConfigureNamesBool[] =
|
||||
true, NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
{"minimize_standby_conflicts", PGC_POSTMASTER, WAL_SETTINGS,
|
||||
gettext_noop("Additional information is added to WAL records to"
|
||||
" minimize the number of false positive cancelations"
|
||||
" caused by recovery conflicts on WAL standby nodes."),
|
||||
NULL
|
||||
},
|
||||
&MinimizeStandbyConflicts,
|
||||
false, NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
{"allow_system_table_mods", PGC_POSTMASTER, DEVELOPER_OPTIONS,
|
||||
gettext_noop("Allows modifications of the structure of system tables."),
|
||||
|
@ -184,9 +184,8 @@
|
||||
# - Hot Standby -
|
||||
|
||||
#recovery_connections = on # allows connections during recovery
|
||||
#minimize_standby_conflicts = on # additional WAL info to avoid conflicts
|
||||
#max_standby_delay = 30 # max acceptable standby lag (s) to help queries
|
||||
# complete without conflict; -1 disables
|
||||
#max_standby_delay = 30 # max acceptable standby lag (s) to allow queries
|
||||
# to complete without conflict; -1 disables
|
||||
|
||||
# - Replication -
|
||||
|
||||
|
Reference in New Issue
Block a user