diff options
author | unknown <serg@serg.mylan> | 2004-02-22 00:19:36 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-02-22 00:19:36 +0100 |
commit | dc68b6e0982f784970c8e295916827bd750e3b51 (patch) | |
tree | 6af551cd9d854a00ac2a43c87e0b015dc1db230f /mysql-test/t/fulltext.test | |
parent | 4ca5eb30084bb63d00ef5b969c85b6330283f407 (diff) | |
download | mariadb-git-dc68b6e0982f784970c8e295916827bd750e3b51.tar.gz |
ftb +(+(many -parens)) bug fixed
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r-- | mysql-test/t/fulltext.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index 02657ba3775..774a3b42619 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -18,7 +18,6 @@ select * from t1 where MATCH(a,b) AGAINST ("collections"); select * from t1 where MATCH(a,b) AGAINST ("indexes"); select * from t1 where MATCH(a,b) AGAINST ("indexes collections"); - # add_ft_keys() tests explain select * from t1 where MATCH(a,b) AGAINST ("collections"); @@ -54,6 +53,9 @@ select * from t1 where MATCH a,b AGAINST ('"text search" -"now support"' IN BOOL select * from t1 where MATCH a,b AGAINST ('"text search" +"now support"' IN BOOLEAN MODE); select * from t1 where MATCH a,b AGAINST ('"text i"' IN BOOLEAN MODE); +select * from t1 where MATCH a,b AGAINST ('+(support collections) +foobar*' IN BOOLEAN MODE); +select * from t1 where MATCH a,b AGAINST ('+(+(support collections)) +foobar*' IN BOOLEAN MODE); + # boolean w/o index: select * from t1 where MATCH a AGAINST ("search" IN BOOLEAN MODE); |