@@ -79,7 +79,7 @@ bool XLogArchiveMode = false;
7979char * XLogArchiveCommand = NULL ;
8080bool EnableHotStandby = false;
8181bool fullPageWrites = true;
82- bool walLogHints = false;
82+ bool wal_log_hints = false;
8383bool log_checkpoints = false;
8484int sync_method = DEFAULT_SYNC_METHOD ;
8585int wal_level = WAL_LEVEL_MINIMAL ;
@@ -5271,7 +5271,7 @@ BootStrapXLOG(void)
52715271 ControlFile -> max_prepared_xacts = max_prepared_xacts ;
52725272 ControlFile -> max_locks_per_xact = max_locks_per_xact ;
52735273 ControlFile -> wal_level = wal_level ;
5274- ControlFile -> wal_log_hints = walLogHints ;
5274+ ControlFile -> wal_log_hints = wal_log_hints ;
52755275 ControlFile -> data_checksum_version = bootstrap_data_checksum_version ;
52765276
52775277 /* some additional ControlFile fields are set in WriteControlFile() */
@@ -9060,7 +9060,7 @@ static void
90609060XLogReportParameters (void )
90619061{
90629062 if (wal_level != ControlFile -> wal_level ||
9063- walLogHints != ControlFile -> wal_log_hints ||
9063+ wal_log_hints != ControlFile -> wal_log_hints ||
90649064 MaxConnections != ControlFile -> MaxConnections ||
90659065 max_worker_processes != ControlFile -> max_worker_processes ||
90669066 max_prepared_xacts != ControlFile -> max_prepared_xacts ||
@@ -9083,7 +9083,7 @@ XLogReportParameters(void)
90839083 xlrec .max_prepared_xacts = max_prepared_xacts ;
90849084 xlrec .max_locks_per_xact = max_locks_per_xact ;
90859085 xlrec .wal_level = wal_level ;
9086- xlrec .wal_log_hints = walLogHints ;
9086+ xlrec .wal_log_hints = wal_log_hints ;
90879087
90889088 rdata .buffer = InvalidBuffer ;
90899089 rdata .data = (char * ) & xlrec ;
@@ -9098,7 +9098,7 @@ XLogReportParameters(void)
90989098 ControlFile -> max_prepared_xacts = max_prepared_xacts ;
90999099 ControlFile -> max_locks_per_xact = max_locks_per_xact ;
91009100 ControlFile -> wal_level = wal_level ;
9101- ControlFile -> wal_log_hints = walLogHints ;
9101+ ControlFile -> wal_log_hints = wal_log_hints ;
91029102 UpdateControlFile ();
91039103 }
91049104}
@@ -9485,7 +9485,7 @@ xlog_redo(XLogRecPtr lsn, XLogRecord *record)
94859485 ControlFile -> max_prepared_xacts = xlrec .max_prepared_xacts ;
94869486 ControlFile -> max_locks_per_xact = xlrec .max_locks_per_xact ;
94879487 ControlFile -> wal_level = xlrec .wal_level ;
9488- ControlFile -> wal_log_hints = walLogHints ;
9488+ ControlFile -> wal_log_hints = wal_log_hints ;
94899489
94909490 /*
94919491 * Update minRecoveryPoint to ensure that if recovery is aborted, we
0 commit comments