summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/csuite/wt2246_col_append
diff options
context:
space:
mode:
authorClarisse Cheah <clarisse.cheah@mongodb.com>2022-10-16 23:44:13 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-17 00:18:57 +0000
commit31547026b14608a2a3608be29f8d344ccb844933 (patch)
treecc205de4776839825fe605a9e06d9b36d36fa55f /src/third_party/wiredtiger/test/csuite/wt2246_col_append
parent8643f97119f04652af23625262a028a4dac82525 (diff)
downloadmongo-31547026b14608a2a3608be29f8d344ccb844933.tar.gz
Import wiredtiger: 2426972d3aac50b2c94ef25a90af3d2d1021360a from branch mongodb-master
ref: eb9ed56c4f..2426972d3a for: 6.2.0-rc0 Revert "WT-9975 Log stats for c and format tests (#8359)" (#8373)
Diffstat (limited to 'src/third_party/wiredtiger/test/csuite/wt2246_col_append')
-rw-r--r--src/third_party/wiredtiger/test/csuite/wt2246_col_append/main.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/third_party/wiredtiger/test/csuite/wt2246_col_append/main.c b/src/third_party/wiredtiger/test/csuite/wt2246_col_append/main.c
index d3a16858691..768e7c375aa 100644
--- a/src/third_party/wiredtiger/test/csuite/wt2246_col_append/main.c
+++ b/src/third_party/wiredtiger/test/csuite/wt2246_col_append/main.c
@@ -104,7 +104,7 @@ main(int argc, char *argv[])
wt_thread_t idlist[100];
clock_t ce, cs;
uint64_t i, id;
- char buf[256];
+ char buf[100];
opts = &_opts;
memset(opts, 0, sizeof(*opts));
@@ -115,8 +115,7 @@ main(int argc, char *argv[])
testutil_make_work_dir(opts->home);
testutil_check(__wt_snprintf(buf, sizeof(buf),
- "create,cache_size=%s,eviction=(threads_max=5),statistics=(all),"
- "statistics_log=(json,on_close,wait=1)",
+ "create,cache_size=%s,eviction=(threads_max=5),statistics=(all)",
opts->table_type == TABLE_FIX ? "500MB" : "2GB"));
testutil_check(wiredtiger_open(opts->home, NULL, buf, &opts->conn));
testutil_check(opts->conn->open_session(opts->conn, NULL, NULL, &session));
@@ -130,8 +129,7 @@ main(int argc, char *argv[])
/* Force to disk and re-open. */
testutil_check(opts->conn->close(opts->conn, NULL));
- testutil_check(wiredtiger_open(
- opts->home, NULL, "statistics=(all),statistics_log=(json,on_close,wait=1)", &opts->conn));
+ testutil_check(wiredtiger_open(opts->home, NULL, "statistics=(all)", &opts->conn));
(void)signal(SIGINT, onsig);