summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/csuite/random_abort/main.c
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2021-08-20 12:46:38 +1000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-08-20 03:06:59 +0000
commitd77ff77250a931dedd382956cf54fe40d815dfda (patch)
treec3d0ccab30fecd901927bcd6706d6379c2caaf54 /src/third_party/wiredtiger/test/csuite/random_abort/main.c
parent0c6300fedd5fa9c074fa4c97f5e4193cd7645593 (diff)
downloadmongo-d77ff77250a931dedd382956cf54fe40d815dfda.tar.gz
Import wiredtiger: 27d10c3362673e12fb53b9c4be22cbb9fd46c72c from branch mongodb-4.4
ref: 03eb45ea7f..27d10c3362 for: 4.4.9 WT-6915 Write "log files" subpage for Architecture Guide WT-7363 Add support for dumping history store output in hex format WT-7663 Change local store extension to allow only readonly FS operations WT-7718 Rename 'build_cmake' WT-7866 Update cache_hs_insert limits in cppsuite-hs-cleanup-stress WT-7880 Fix history store record issue when the update following the prepared update is in history store WT-7891 Remove doc typos WT-7907 Add dependencies to swig module definition in CMake build WT-7918 Support setting a prepare timestamp at current read timestamp WT-7928 VLCS checkpoint and additional test suite improvements WT-7934 Upload perf results from many-collection test to Altas WT-7936 Update the format.sh script to run recovery tests WT-7940 Update mongod path for many-coll test WT-7943 Do not assert timestamps when rolling back a prepared transactions WT-7945 Move rollback handling to the operation layer in the cppsuite. WT-7947 Allow CMake to take in a specific Python version WT-7952 Minor docs build fixes WT-7953 Teach s_string to not look inside getopt option lists. WT-7955 Copy format.sh and CONFIG.stress to the test/format build directory with CMake WT-7956 RTS to skip deleted or stable RLE cells WT-7961 Sometimes lag oldest timestamp in timestamp_abort.
Diffstat (limited to 'src/third_party/wiredtiger/test/csuite/random_abort/main.c')
-rw-r--r--src/third_party/wiredtiger/test/csuite/random_abort/main.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/third_party/wiredtiger/test/csuite/random_abort/main.c b/src/third_party/wiredtiger/test/csuite/random_abort/main.c
index c863f47cbd3..26789a1ac9b 100644
--- a/src/third_party/wiredtiger/test/csuite/random_abort/main.c
+++ b/src/third_party/wiredtiger/test/csuite/random_abort/main.c
@@ -162,15 +162,9 @@ thread_run(void *arg)
testutil_check(td->conn->open_session(td->conn, NULL, NULL, &session));
-#if 0
- /*
- * Make sure that alternative threads operate on column-store table
- *
- * FIXME-WT-6125: temporarily turn off column store test.
- */
+ /* Make alternate threads operate on the column-store table. */
if (td->id % 2 != 0)
columnar_table = true;
-#endif
if (columnar_table)
testutil_check(session->open_cursor(session, col_uri, NULL, NULL, &cursor));
@@ -384,7 +378,6 @@ recover_and_verify(uint32_t nthreads)
fatal = false;
for (i = 0; i < nthreads; ++i) {
-#if 0
/*
* Every alternative thread is operated on column-store table. Make sure that proper cursor
* is used for verification of recovered records.
@@ -396,11 +389,6 @@ recover_and_verify(uint32_t nthreads)
columnar_table = false;
cursor = row_cursor;
}
-#else
- /* FIXME-WT-6125: temporarily turn off column store test. */
- columnar_table = false;
- cursor = row_cursor;
-#endif
middle = 0;
testutil_check(__wt_snprintf(fname[DELETE_RECORD_FILE_ID],