summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThirunarayanan Balathandayuthapani <thiru@mariadb.com>2020-02-20 14:04:09 +0530
committerThirunarayanan Balathandayuthapani <thiru@mariadb.com>2020-02-20 14:04:27 +0530
commit3ce49a0a5225eb7d185361e1ece65d03813ec550 (patch)
tree88d738d8e0a3ca32639c876a06d8dcb038c274cf
parent0d1dd2e79d4411ef8aaac9e789569253061caec9 (diff)
downloadmariadb-git-3ce49a0a5225eb7d185361e1ece65d03813ec550.tar.gz
MDEV-21563 FTS thread aborts during shutdown
- Add warning suppression in misc_debug2 test.
-rw-r--r--mysql-test/suite/innodb_fts/r/misc_debug2.result1
-rw-r--r--mysql-test/suite/innodb_fts/t/misc_debug2.test1
2 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb_fts/r/misc_debug2.result b/mysql-test/suite/innodb_fts/r/misc_debug2.result
index e9daa2d6b30..b3bc12f92cc 100644
--- a/mysql-test/suite/innodb_fts/r/misc_debug2.result
+++ b/mysql-test/suite/innodb_fts/r/misc_debug2.result
@@ -1,4 +1,5 @@
call mtr.add_suppression("InnoDB: Table '.*' tablespace is set as discarded.");
+call mtr.add_suppression("InnoDB: Tablespace for table .* is set as discarded.");
CREATE TABLE mdev21563(f1 VARCHAR(100), FULLTEXT idx(f1))ENGINE=InnoDB;
set debug_dbug="+d,fts_instrument_sync_request";
INSERT INTO mdev21563 VALUES('This is a test');
diff --git a/mysql-test/suite/innodb_fts/t/misc_debug2.test b/mysql-test/suite/innodb_fts/t/misc_debug2.test
index 31c026e3db9..0a9e137dd80 100644
--- a/mysql-test/suite/innodb_fts/t/misc_debug2.test
+++ b/mysql-test/suite/innodb_fts/t/misc_debug2.test
@@ -2,6 +2,7 @@
--source include/have_debug.inc
--source include/not_embedded.inc
call mtr.add_suppression("InnoDB: Table '.*' tablespace is set as discarded.");
+call mtr.add_suppression("InnoDB: Tablespace for table .* is set as discarded.");
CREATE TABLE mdev21563(f1 VARCHAR(100), FULLTEXT idx(f1))ENGINE=InnoDB;
set debug_dbug="+d,fts_instrument_sync_request";