diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2010-02-01 13:40:28 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2010-02-01 13:40:28 +0000 |
commit | 296578feb490611f248c2db222f199e5876a3c01 (patch) | |
tree | 6c6eeebc5e68b1a3dd0b6001577239a8c6e1a3a6 /src/backend/access/transam/xlog.c | |
parent | 9ea9918e37689fbc9ed43532b8828652b5ea90cd (diff) | |
download | postgresql-296578feb490611f248c2db222f199e5876a3c01.tar.gz postgresql-296578feb490611f248c2db222f199e5876a3c01.zip |
Revoke augmentation of WAL records for btree delete, per discussion.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 8aa7976e3e3..49adda12f9a 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.365 2010/01/29 18:39:05 sriggs Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.366 2010/02/01 13:40:28 sriggs Exp $ * *------------------------------------------------------------------------- */ @@ -71,7 +71,6 @@ bool XLogArchiveMode = false; char *XLogArchiveCommand = NULL; bool XLogRequestRecoveryConnections = true; int MaxStandbyDelay = 30; -bool MinimizeStandbyConflicts = false; bool fullPageWrites = true; bool log_checkpoints = false; int sync_method = DEFAULT_SYNC_METHOD; |