diff options
author | unknown <serg@serg.mysql.com> | 2002-11-20 15:17:17 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2002-11-20 15:17:17 +0100 |
commit | bbeeee13d57f06a3fe3288d9ee0b486d54b42982 (patch) | |
tree | 021609d4dfdaa4e20d4556ce766de887214a6207 /mysql-test/r/fulltext.result | |
parent | 4d4cbb024e98989984e3070475e08329aa62b9c5 (diff) | |
download | mariadb-git-bbeeee13d57f06a3fe3288d9ee0b486d54b42982.tar.gz |
bug in _ftb_strstr fixed :)
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index ab227687265..edf109fcc93 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -85,6 +85,9 @@ Full-text search in MySQL implements vector space model select * from t1 where MATCH a,b AGAINST ('"text search" +"now support"' IN BOOLEAN MODE); 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 AGAINST ("search" IN BOOLEAN MODE); a b Full-text search in MySQL implements vector space model |