diff options
author | serg@serg.mylan <> | 2004-05-27 21:14:59 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2004-05-27 21:14:59 +0200 |
commit | 1998dd786e37685273ca97083ff52d0a409ba7aa (patch) | |
tree | 5663f0d56946229ad599814bac1f95f907a53396 /mysql-test/t/fulltext.test | |
parent | c939f42fa58e98102312e0c43fdaa15863042423 (diff) | |
download | mariadb-git-1998dd786e37685273ca97083ff52d0a409ba7aa.tar.gz |
backport bug#2708 fix from 4.1
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r-- | mysql-test/t/fulltext.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index 86d2cde370a..bd887bc63ee 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -57,6 +57,10 @@ select * from t1 where MATCH a,b AGAINST ('"xt indexes"' IN BOOLEAN MODE); select * from t1 where MATCH a,b AGAINST ('+(support collections) +foobar*' IN BOOLEAN MODE); select * from t1 where MATCH a,b AGAINST ('+(+(support collections)) +foobar*' IN BOOLEAN MODE); +# bug#2708, bug#3870 crash + +select * from t1 where MATCH a,b AGAINST('"space model' IN BOOLEAN MODE); + # boolean w/o index: select * from t1 where MATCH a AGAINST ("search" IN BOOLEAN MODE); |