diff options
author | unknown <serg@serg.mysql.com> | 2002-03-04 13:17:49 +0000 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2002-03-04 13:17:49 +0000 |
commit | d9ff111a7c2d12df6a79e1d36e8fa0324dcd3ee2 (patch) | |
tree | 07a598b90dfe3012dbed940305ebf74594dfd4e8 /mysql-test/t/fulltext.test | |
parent | 19d37eca52460dc4f94a1855d0aa78c3df968838 (diff) | |
download | mariadb-git-d9ff111a7c2d12df6a79e1d36e8fa0324dcd3ee2.tar.gz |
bug with indexless boolean fts fixed
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r-- | mysql-test/t/fulltext.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index 3d203bc61f5..da0c0a52d8a 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -27,7 +27,8 @@ select * from t1 where MATCH(a,b) AGAINST("+support +collections" IN BOOLEAN MOD select * from t1 where MATCH(a,b) AGAINST("+search" IN BOOLEAN MODE); select * from t1 where MATCH(a,b) AGAINST("+search +(support vector)" IN BOOLEAN MODE); select * from t1 where MATCH(a,b) AGAINST("+search -(support vector)" IN BOOLEAN MODE); -select *, MATCH(a,b) AGAINST("support collections" IN BOOLEAN MODE) as x from t1; +select *, MATCH(a,b) AGAINST("support collections" IN BOOLEAN MODE) as x from t1; +select *, MATCH(a,b) AGAINST("collections support" IN BOOLEAN MODE) as x from t1; # boolean w/o index: |