diff options
author | serg@serg.mylan <> | 2004-02-16 18:53:00 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-02-16 18:53:00 +0100 |
commit | de240a1ce2ffbc62f16e5772f9c78df58edb9092 (patch) | |
tree | 9f50a5286834ba27e3397680e3530b5bb72e2392 /mysql-test/t/fulltext_var.test | |
parent | 3c1e8aa4aaae94537359d617279f6b1ed90a74e7 (diff) | |
download | mariadb-git-de240a1ce2ffbc62f16e5772f9c78df58edb9092.tar.gz |
ft_boolean_syntax made changeable
Diffstat (limited to 'mysql-test/t/fulltext_var.test')
-rw-r--r-- | mysql-test/t/fulltext_var.test | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mysql-test/t/fulltext_var.test b/mysql-test/t/fulltext_var.test index 71213d1195a..8cc8acf60a6 100644 --- a/mysql-test/t/fulltext_var.test +++ b/mysql-test/t/fulltext_var.test @@ -1,5 +1,27 @@ # # Fulltext configurable parameters # +--disable_warnings +drop table if exists t1; +--enable_warnings show variables like "ft\_%"; + +create table t1 (b text not null); +insert t1 values ('aaaaaa bbbbbb cccccc'); +insert t1 values ('bbbbbb cccccc'); +insert t1 values ('aaaaaa cccccc'); +select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode); +-- error 1229 +set ft_boolean_syntax=' +-><()~*:""&|'; +set global ft_boolean_syntax=' +-><()~*:""&|'; +select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode); +set global ft_boolean_syntax='@ -><()~*:""&|'; +select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode); +select * from t1 where match b against ('+aaaaaa @bbbbbb' in boolean mode); +-- error 1231 +set global ft_boolean_syntax='@ -><()~*:""@|'; +-- error 1231 +set global ft_boolean_syntax='+ -><()~*:""@!|'; +drop table t1; + |