summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/log/log.c
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2020-04-22 09:50:35 +1000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-04-22 00:27:44 +0000
commit0a5ff5f074b671308c843b4ba6d7195b2591e7d4 (patch)
tree2668db86a44cabd966cd7fabe8a11aeadfd1de83 /src/third_party/wiredtiger/src/log/log.c
parentc593d0fb6eec6b4f3c7ae02a5c3de73ad6e3af95 (diff)
downloadmongo-0a5ff5f074b671308c843b4ba6d7195b2591e7d4.tar.gz
Import wiredtiger: 7b994a862e899a12eb7c3ac814c9fada7d8d1ab9 from branch mongodb-4.4
ref: 9bd1ece797..7b994a862e for: 4.5.1 WT-4701 Switch test/format to use WiredTiger locking primitives WT-5766 Separate out internal and shared transaction data WT-5791 Prepare checkpoint can finish in 0msec and reset prepare min stat WT-5794 Remove skew_newest option from reconciliation WT-5833 Fix caching issue for overflow key/value items WT-5919 Disallow logging archival testing with log-based incremental backup WT-5946 Eviction server handles can deadlock when opening HS cursors WT-5968 Make the WT_SESSION_IMPL.txn field an allocated structure WT-5986 Create script for emulating multiversion tests WT-6016 Fill source code comments where lines start with parentheticals WT-6020 __rec_append_orig_value() cleanup WT-6026 Fix s_all breakage on format.h
Diffstat (limited to 'src/third_party/wiredtiger/src/log/log.c')
-rw-r--r--src/third_party/wiredtiger/src/log/log.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/third_party/wiredtiger/src/log/log.c b/src/third_party/wiredtiger/src/log/log.c
index 963b1998289..87e4bda2a8a 100644
--- a/src/third_party/wiredtiger/src/log/log.c
+++ b/src/third_party/wiredtiger/src/log/log.c
@@ -1191,10 +1191,8 @@ __log_newfile(WT_SESSION_IMPL *session, bool conn_open, bool *created)
*/
if (create_log) {
/*
- * Increment the missed pre-allocated file counter only
- * if a hot backup is not in progress. We are deliberately
- * not using pre-allocated log files during backup
- * (see comment above).
+ * Increment the missed pre-allocated file counter only if a hot backup is not in progress.
+ * We are deliberately not using pre-allocated log files during backup (see comment above).
*/
if (!conn->hot_backup)
log->prep_missed++;
@@ -1430,10 +1428,9 @@ __log_truncate(WT_SESSION_IMPL *session, WT_LSN *lsn, bool this_log, bool salvag
/*
* Truncate the log file to the given LSN.
*
- * It's possible the underlying file system doesn't support truncate
- * (there are existing examples), which is fine, but we don't want to
- * repeatedly do the setup work just to find that out every time. Check
- * before doing work, and if there's a not-supported error, turn off
+ * It's possible the underlying file system doesn't support truncate (there are existing
+ * examples), which is fine, but we don't want to repeatedly do the setup work just to find that
+ * out every time. Check before doing work, and if there's a not-supported error, turn off
* future truncates.
*/
WT_ERR(__log_openfile(session, lsn->l.file, 0, &log_fh));