1call mtr.add_suppression("InnoDB: User stopword table .* does not exist.");
2select @@global.innodb_ft_server_stopword_table;
3@@global.innodb_ft_server_stopword_table
4NULL
5CREATE TABLE `stop_it-IT` ENGINE = InnoDB SELECT * FROM information_schema.INNODB_FT_DEFAULT_STOPWORD;
6SET @@global.innodb_ft_server_stopword_table = 'test/stop_it-IT';
7ERROR 42000: Variable 'innodb_ft_server_stopword_table' can't be set to the value of 'test/stop_it-IT'
8SET @@global.innodb_ft_server_stopword_table = 'test/stop_it@002dIT';
9drop table `stop_it-IT`;
10CREATE TABLE stop_it ENGINE = InnoDB SELECT * FROM information_schema.INNODB_FT_DEFAULT_STOPWORD;
11SET @@global.innodb_ft_server_stopword_table = 'test/stop_it';
12SET @@global.innodb_ft_server_stopword_table = NULL;
13drop table stop_it;
14