diff options
author | unknown <serg@serg.mylan> | 2004-05-27 21:14:59 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-05-27 21:14:59 +0200 |
commit | a4d82ab8fe2678fd0586fad16bae3e345bb7ef3d (patch) | |
tree | 5663f0d56946229ad599814bac1f95f907a53396 /mysql-test/r/fulltext.result | |
parent | a4237f3dd9975aa54b3cbab8efb61ee9a74f5442 (diff) | |
download | mariadb-git-a4d82ab8fe2678fd0586fad16bae3e345bb7ef3d.tar.gz |
backport bug#2708 fix from 4.1
myisam/ft_boolean_search.c:
perlify comment
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 baa3a834f6f..19bd355f537 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -122,6 +122,9 @@ select * from t1 where MATCH a,b AGAINST ('+(support collections) +foobar*' IN B 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('"space model' IN BOOLEAN MODE); +a b +Full-text search in MySQL implements vector space model select * from t1 where MATCH a AGAINST ("search" IN BOOLEAN MODE); a b Full-text search in MySQL implements vector space model |