File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ select @@global.innodb_ft_server_stopword_table;
2
+ @@global.innodb_ft_server_stopword_table
3
+ NULL
4
+ CREATE TABLE `stop_it-IT` ENGINE = InnoDB SELECT * FROM information_schema.INNODB_FT_DEFAULT_STOPWORD;
5
+ SET @@global.innodb_ft_server_stopword_table = 'test/stop_it-IT';
6
+ ERROR 42000: Variable 'innodb_ft_server_stopword_table' can't be set to the value of 'test/stop_it-IT'
7
+ SET @@global.innodb_ft_server_stopword_table = 'test/stop_it@002dIT';
8
+ drop table `stop_it-IT`;
9
+ CREATE TABLE stop_it ENGINE = InnoDB SELECT * FROM information_schema.INNODB_FT_DEFAULT_STOPWORD;
10
+ SET @@global.innodb_ft_server_stopword_table = 'test/stop_it';
11
+ SET @@global.innodb_ft_server_stopword_table = NULL;
12
+ drop table stop_it;
Original file line number Diff line number Diff line change
1
+ --innodb_ft_default_stopword
2
+
Original file line number Diff line number Diff line change
1
+ --source include/have_innodb.inc
2
+
3
+ select @@global.innodb_ft_server_stopword_table;
4
+ CREATE TABLE `stop_it-IT` ENGINE = InnoDB SELECT * FROM information_schema.INNODB_FT_DEFAULT_STOPWORD;
5
+ --error 1231
6
+ SET @@global.innodb_ft_server_stopword_table = 'test/stop_it-IT';
7
+ SET @@global.innodb_ft_server_stopword_table = 'test/stop_it@002dIT';
8
+ drop table `stop_it-IT`;
9
+
10
+ CREATE TABLE stop_it ENGINE = InnoDB SELECT * FROM information_schema.INNODB_FT_DEFAULT_STOPWORD;
11
+ SET @@global.innodb_ft_server_stopword_table = 'test/stop_it';
12
+
13
+ SET @@global.innodb_ft_server_stopword_table = NULL;
14
+
15
+ drop table stop_it;
You can’t perform that action at this time.
0 commit comments