1call mtr.add_suppression("InnoDB: Table '.*' tablespace is set as discarded.");
2call mtr.add_suppression("InnoDB: Tablespace for table .* is set as discarded.");
3CREATE TABLE mdev21563(f1 VARCHAR(100), FULLTEXT idx(f1))ENGINE=InnoDB;
4set debug_dbug="+d,fts_instrument_sync_request";
5INSERT INTO mdev21563 VALUES('This is a test');
6ALTER TABLE mdev21563 DISCARD TABLESPACE;
7DROP TABLE mdev21563;
8