diff options
author | unknown <jimw@mysql.com> | 2005-06-20 15:02:45 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-06-20 15:02:45 -0700 |
commit | 3f6501c5e5eb3a793cc7bcafbcfe0abb129693ad (patch) | |
tree | 771ab84f683c6b6d523ddedf80755c104e17cca7 /mysql-test/t/fulltext.test | |
parent | 2bf4fa73de38c2d353a9b1263f80251b4641419a (diff) | |
parent | e17de6ecb472e84c7f826f6ac77c236ce952b9a8 (diff) | |
download | mariadb-git-3f6501c5e5eb3a793cc7bcafbcfe0abb129693ad.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-4.1-clean
into mysql.com:/home/jimw/my/mysql-5.0-clean
VC++Files/client/mysqlclient.dsp:
Auto merged
VC++Files/libmysql/libmysql.dsp:
Auto merged
client/mysql.cc:
Auto merged
myisam/ft_boolean_search.c:
Auto merged
mysql-test/r/fulltext.result:
Auto merged
mysql-test/t/fulltext.test:
Auto merged
vio/viosocket.c:
Auto merged
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 2acf69dad76..3c4d5dc93da 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; # |