diff options
author | unknown <serg@sergbook.mysql.com> | 2002-06-28 15:18:45 +0200 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2002-06-28 15:18:45 +0200 |
commit | 5b2adf3f5f1d349907d4ca8575d313296f643068 (patch) | |
tree | d87daba559aa43d0cd4854f33949be641f2f8cb7 /mysql-test/r/fulltext.result | |
parent | ea01d6572a9d8187dcf70753d5bc420a9c2e139b (diff) | |
download | mariadb-git-5b2adf3f5f1d349907d4ca8575d313296f643068.tar.gz |
parser bug of "phrase search" fixed
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index f5e65c5103b..b312f5fbc3d 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -70,6 +70,8 @@ Full-text search in MySQL implements vector space model 0 select * from t1 where MATCH a,b AGAINST ("+call* +coll*" IN BOOLEAN MODE); a b Full-text indexes are called collections +select * from t1 where MATCH a,b AGAINST ('"support now"' IN BOOLEAN MODE); +a b select * from t1 where MATCH a,b AGAINST ('"Now sUPPort"' IN BOOLEAN MODE); a b MySQL has now support for full-text search |