diff options
author | jimw@mysql.com <> | 2005-06-17 21:44:17 +0200 |
---|---|---|
committer | jimw@mysql.com <> | 2005-06-17 21:44:17 +0200 |
commit | 176143413e713d0ce78cc11f909abe8c5d1c4340 (patch) | |
tree | ad6efdce69deb802627c189485df5498a88a437c /mysql-test/t/fulltext.test | |
parent | 9b3d0b85a3c372ac7ac8be0cbec859cba8f13a57 (diff) | |
download | mariadb-git-176143413e713d0ce78cc11f909abe8c5d1c4340.tar.gz |
Fix hang/crash with Boolean full-text search against an unindexed field for
which the query contained more words than we allocated space. (Bug #7858)
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r-- | mysql-test/t/fulltext.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index 4809f6f0357..d5493daf63e 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -253,9 +253,9 @@ insert into t2 values (3, 1, 'xxbuz'); select * from t1 join t2 using(`t1_id`) where match (t1.name, t2.name) against('xxfoo' in boolean mode); # -# bug with many short (< ft_min_word_len) words in boolean search +# Bug #7858: bug with many short (< ft_min_word_len) words in boolean search # -select * from t2 where match name against ('a* b* c* d* e* f*' in boolean mode); +select * from t2 where match name against ('*a*b*c*d*e*f*' in boolean mode); drop table t1,t2; # |