diff options
author | serg@serg.mylan <> | 2004-05-10 12:39:01 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2004-05-10 12:39:01 +0200 |
commit | 2cbc4e71fcec35820a85998e602fccb8ad1609a2 (patch) | |
tree | aa63f206deb5fdf6e373750f990cbe8768ce3c53 /mysql-test/r/fulltext.result | |
parent | f2991bc41007a8843b09f7e1b1d96061d2279b5d (diff) | |
download | mariadb-git-2cbc4e71fcec35820a85998e602fccb8ad1609a2.tar.gz |
backport from 4.1:
"phrase search" should not match partial words (it should not match 'paraphrase searches')
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 738941f63c7..baa3a834f6f 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -116,7 +116,8 @@ a b MySQL has now support for full-text search select * from t1 where MATCH a,b AGAINST ('"text i"' IN BOOLEAN MODE); a b -Full-text indexes are called collections +select * from t1 where MATCH a,b AGAINST ('"xt indexes"' IN BOOLEAN MODE); +a b select * from t1 where MATCH a,b AGAINST ('+(support collections) +foobar*' IN BOOLEAN MODE); a b select * from t1 where MATCH a,b AGAINST ('+(+(support collections)) +foobar*' IN BOOLEAN MODE); |