summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/innodb/t/scrub_debug.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/innodb/t/scrub_debug.test')
-rw-r--r--mysql-test/suite/innodb/t/scrub_debug.test28
1 files changed, 28 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/t/scrub_debug.test b/mysql-test/suite/innodb/t/scrub_debug.test
new file mode 100644
index 00000000..a1f0b38e
--- /dev/null
+++ b/mysql-test/suite/innodb/t/scrub_debug.test
@@ -0,0 +1,28 @@
+--source include/have_innodb.inc
+--source include/have_sequence.inc
+--source include/have_debug.inc
+
+SET @save_debug=@@GLOBAL.INNODB_LIMIT_OPTIMISTIC_INSERT_DEBUG;
+SET @save_scrub=@@GLOBAL.INNODB_IMMEDIATE_SCRUB_DATA_UNCOMPRESSED;
+
+SET GLOBAL INNODB_IMMEDIATE_SCRUB_DATA_UNCOMPRESSED=1;
+SET GLOBAL INNODB_LIMIT_OPTIMISTIC_INSERT_DEBUG=2;
+let $MYSQLD_DATADIR=`select @@datadir`;
+CREATE TABLE t1(f1 INT AUTO_INCREMENT PRIMARY KEY,
+ f2 VARCHAR(256) GENERATED ALWAYS as('repairman'),
+ INDEX idx(f2))ENGINE= InnoDB;
+INSERT INTO t1(f1) SELECT seq FROM seq_1_to_50;
+FLUSH TABLE t1 FOR EXPORT;
+let SEARCH_PATTERN= repairman;
+let SEARCH_FILE= $MYSQLD_DATADIR/test/t1.ibd;
+-- source include/search_pattern_in_file.inc
+UNLOCK TABLES;
+
+ALTER TABLE t1 DROP INDEX idx;
+-- source include/wait_all_purged.inc
+FLUSH TABLE t1 FOR EXPORT;
+-- source include/search_pattern_in_file.inc
+UNLOCK TABLES;
+DROP TABLE t1;
+SET GLOBAL INNODB_LIMIT_OPTIMISTIC_INSERT_DEBUG=@save_debug;
+SET GLOBAL INNODB_IMMEDIATE_SCRUB_DATA_UNCOMPRESSED=@save_scrub;