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 | 7759360dca5e4536eb41cb585334c9e088378d80 (patch) | |
tree | 6af551cd9d854a00ac2a43c87e0b015dc1db230f /mysql-test/r/fulltext.result | |
parent | ecf6eeca6069ea85cc99fa6d381fb6d4a53977d2 (diff) | |
download | mariadb-git-7759360dca5e4536eb41cb585334c9e088378d80.tar.gz |
ftb +(+(many -parens)) bug fixed
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 651baad266e..738941f63c7 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -117,6 +117,10 @@ 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 ('+(support collections) +foobar*' 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 AGAINST ("search" IN BOOLEAN MODE); a b Full-text search in MySQL implements vector space model |