summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/block/block_ext.c
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2020-07-09 16:42:21 +1000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-07-09 07:01:46 +0000
commit0e8bb99b4f9576d8e2ab32af4a8ab60efd80a083 (patch)
tree927b772f60a1b2c13f65317bb0482c17fd1d864b /src/third_party/wiredtiger/src/block/block_ext.c
parent882b737c34fb9ca5707942a8a6ad05d29de0985a (diff)
downloadmongo-0e8bb99b4f9576d8e2ab32af4a8ab60efd80a083.tar.gz
Import wiredtiger: 89446427f9525ecb7dd10c1b193d1a3f78999d77 from branch mongodb-4.6
ref: 1ba46e7a92..89446427f9 for: 4.5.1 WT-5970 Update test_wt4333_handle_locks to use 1GB cache size WT-6479 Don't insert updates after the first globally visible update to the history store WT-6488 Fail update restore eviction if no new updates were written
Diffstat (limited to 'src/third_party/wiredtiger/src/block/block_ext.c')
-rw-r--r--src/third_party/wiredtiger/src/block/block_ext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/src/block/block_ext.c b/src/third_party/wiredtiger/src/block/block_ext.c
index 8e854da15c1..b11cdf9efff 100644
--- a/src/third_party/wiredtiger/src/block/block_ext.c
+++ b/src/third_party/wiredtiger/src/block/block_ext.c
@@ -470,8 +470,8 @@ __block_extend(WT_SESSION_IMPL *session, WT_BLOCK *block, wt_off_t *offp, wt_off
block->size += size;
WT_STAT_DATA_INCR(session, block_extension);
- __wt_verbose(session, WT_VERB_BLOCK, "file extend %" PRIdMAX "B @ %" PRIdMAX, (intmax_t)size,
- (intmax_t)*offp);
+ __wt_verbose(session, WT_VERB_BLOCK, "file extend %" PRIdMAX "-%" PRIdMAX, (intmax_t)*offp,
+ (intmax_t)(*offp + size));
return (0);
}