diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-01-01 20:17:00 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-01-01 20:17:00 -0500 |
commit | 4b351841fa0b90cb72f5f63c56f06e4511850ac4 (patch) | |
tree | 10a6f5f87cc1dffe1d4da7b9c55d01e9687764a2 /src/backend/access/transam/xlog.c | |
parent | 7c957ec83eeefa8b6d3179f3af0a5dc338d2252b (diff) | |
download | postgresql-4b351841fa0b90cb72f5f63c56f06e4511850ac4.tar.gz postgresql-4b351841fa0b90cb72f5f63c56f06e4511850ac4.zip |
Rename walLogHints to wal_log_hints for easier grepping.
Michael Paquier
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 1277e71071c..43a04166f18 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -79,7 +79,7 @@ bool XLogArchiveMode = false; char *XLogArchiveCommand = NULL; bool EnableHotStandby = false; bool fullPageWrites = true; -bool walLogHints = false; +bool wal_log_hints = false; bool log_checkpoints = false; int sync_method = DEFAULT_SYNC_METHOD; int wal_level = WAL_LEVEL_MINIMAL; @@ -5271,7 +5271,7 @@ BootStrapXLOG(void) ControlFile->max_prepared_xacts = max_prepared_xacts; ControlFile->max_locks_per_xact = max_locks_per_xact; ControlFile->wal_level = wal_level; - ControlFile->wal_log_hints = walLogHints; + ControlFile->wal_log_hints = wal_log_hints; ControlFile->data_checksum_version = bootstrap_data_checksum_version; /* some additional ControlFile fields are set in WriteControlFile() */ @@ -9060,7 +9060,7 @@ static void XLogReportParameters(void) { if (wal_level != ControlFile->wal_level || - walLogHints != ControlFile->wal_log_hints || + wal_log_hints != ControlFile->wal_log_hints || MaxConnections != ControlFile->MaxConnections || max_worker_processes != ControlFile->max_worker_processes || max_prepared_xacts != ControlFile->max_prepared_xacts || @@ -9083,7 +9083,7 @@ XLogReportParameters(void) xlrec.max_prepared_xacts = max_prepared_xacts; xlrec.max_locks_per_xact = max_locks_per_xact; xlrec.wal_level = wal_level; - xlrec.wal_log_hints = walLogHints; + xlrec.wal_log_hints = wal_log_hints; rdata.buffer = InvalidBuffer; rdata.data = (char *) &xlrec; @@ -9098,7 +9098,7 @@ XLogReportParameters(void) ControlFile->max_prepared_xacts = max_prepared_xacts; ControlFile->max_locks_per_xact = max_locks_per_xact; ControlFile->wal_level = wal_level; - ControlFile->wal_log_hints = walLogHints; + ControlFile->wal_log_hints = wal_log_hints; UpdateControlFile(); } } @@ -9485,7 +9485,7 @@ xlog_redo(XLogRecPtr lsn, XLogRecord *record) ControlFile->max_prepared_xacts = xlrec.max_prepared_xacts; ControlFile->max_locks_per_xact = xlrec.max_locks_per_xact; ControlFile->wal_level = xlrec.wal_level; - ControlFile->wal_log_hints = walLogHints; + ControlFile->wal_log_hints = wal_log_hints; /* * Update minRecoveryPoint to ensure that if recovery is aborted, we |