1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Revoke augmentation of WAL records for btree delete, per discussion.

This commit is contained in:
Simon Riggs
2010-02-01 13:40:28 +00:00
parent 9ea9918e37
commit 296578feb4
6 changed files with 14 additions and 48 deletions

View File

@ -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."),