summaryrefslogtreecommitdiff
path: root/storage/rocksdb/mysql-test/rocksdb/t/corrupted_data_reads_debug.test
diff options
context:
space:
mode:
Diffstat (limited to 'storage/rocksdb/mysql-test/rocksdb/t/corrupted_data_reads_debug.test')
-rw-r--r--storage/rocksdb/mysql-test/rocksdb/t/corrupted_data_reads_debug.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/rocksdb/mysql-test/rocksdb/t/corrupted_data_reads_debug.test b/storage/rocksdb/mysql-test/rocksdb/t/corrupted_data_reads_debug.test
index a9ee98dfda5..b0e74221702 100644
--- a/storage/rocksdb/mysql-test/rocksdb/t/corrupted_data_reads_debug.test
+++ b/storage/rocksdb/mysql-test/rocksdb/t/corrupted_data_reads_debug.test
@@ -21,13 +21,13 @@ insert into t1 values (1,1),(2,2),(3,3);
select * from t1;
-set @tmp1=@@rocksdb_verify_checksums;
-set rocksdb_verify_checksums=1;
+set @tmp1=@@rocksdb_verify_row_debug_checksums;
+set rocksdb_verify_row_debug_checksums=1;
set session debug= "+d,myrocks_simulate_bad_row_read1";
--error ER_GET_ERRNO
select * from t1 where pk=1;
set session debug= "-d,myrocks_simulate_bad_row_read1";
-set rocksdb_verify_checksums=@tmp1;
+set rocksdb_verify_row_debug_checksums=@tmp1;
select * from t1 where pk=1;