diff options
author | unknown <monty@mashka.mysql.fi> | 2004-02-22 10:52:43 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2004-02-22 10:52:43 +0200 |
commit | ea19de63851b87f5171d8aeb24dc4fc2cc629a30 (patch) | |
tree | 6cbbcfc1cf2c45ec0edb5cc2a1336fa4f6921161 /mysql-test/t | |
parent | ed27c9120907f6053230938b65e41a189d256b6a (diff) | |
parent | 92ec25594cedf1f1b27bfe2a309a435d39e1a02f (diff) | |
download | mariadb-git-ea19de63851b87f5171d8aeb24dc4fc2cc629a30.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-4.0
into mashka.mysql.fi:/home/my/mysql-4.0
Diffstat (limited to 'mysql-test/t')
-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); |