summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/csuite/schema_abort/main.c
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2019-06-20 16:18:45 +1000
committerLuke Chen <luke.chen@mongodb.com>2019-06-20 16:18:45 +1000
commit06ad4fcd09f13abada62c6ca5911b1ab74733228 (patch)
tree4a922dbd1ac8372a1b81314c4284b9111f4ed611 /src/third_party/wiredtiger/test/csuite/schema_abort/main.c
parentf1dcaea4a97903fa7c785f31c55f484d275a5aed (diff)
downloadmongo-06ad4fcd09f13abada62c6ca5911b1ab74733228.tar.gz
Import wiredtiger: ee1bae262347285f46b5c56cc0490d20b9ee9c98 from branch mongodb-4.2
ref: 40e3225e55..ee1bae2623 for: 4.3.1 WT-4694 Dynamic compression throughput varies widely WT-4798 Fix bug in picking random dhandle for eviction WT-4862 WT_SESSION.import implies an additional write during checkpoints without an avail list WT-4863 Prototype WiredTiger inline functions WT-4869 Stop adding cache pressure when eviction is falling behind
Diffstat (limited to 'src/third_party/wiredtiger/test/csuite/schema_abort/main.c')
-rw-r--r--src/third_party/wiredtiger/test/csuite/schema_abort/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/test/csuite/schema_abort/main.c b/src/third_party/wiredtiger/test/csuite/schema_abort/main.c
index 298c52469dd..e7f22571cc6 100644
--- a/src/third_party/wiredtiger/test/csuite/schema_abort/main.c
+++ b/src/third_party/wiredtiger/test/csuite/schema_abort/main.c
@@ -755,13 +755,13 @@ thread_run(void *arg)
* can be viewed well in a binary dump.
*/
testutil_check(__wt_snprintf(cbuf, sizeof(cbuf),
- "COLL: thread:%" PRIu64 " ts:%" PRIu64 " key: %" PRIu64,
+ "COLL: thread:%" PRIu32 " ts:%" PRIu64 " key: %" PRIu64,
td->info, stable_ts, i));
testutil_check(__wt_snprintf(lbuf, sizeof(lbuf),
- "LOCAL: thread:%" PRIu64 " ts:%" PRIu64 " key: %" PRIu64,
+ "LOCAL: thread:%" PRIu32 " ts:%" PRIu64 " key: %" PRIu64,
td->info, stable_ts, i));
testutil_check(__wt_snprintf(obuf, sizeof(obuf),
- "OPLOG: thread:%" PRIu64 " ts:%" PRIu64 " key: %" PRIu64,
+ "OPLOG: thread:%" PRIu32 " ts:%" PRIu64 " key: %" PRIu64,
td->info, stable_ts, i));
data.size = __wt_random(&rnd) % MAX_VAL;
data.data = cbuf;