From 3d589199fba0115085ce2c1505e77bc37b6d4427 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 3 Nov 2003 23:18:55 +0100 Subject: fixed a bug in boolean fts where a word queue was created based on min_word_len, while with trunc* operator one could get shorter words --- mysql-test/t/fulltext.test | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'mysql-test/t/fulltext.test') diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index 387a36f1f52..69c69794f4f 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -213,5 +213,11 @@ insert into t2 values (1, 1, 'xxfoo'); insert into t2 values (2, 1, 'xxbar'); 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 +# +select * from t2 where match name against ('a* b* c* d* e* f*' in boolean mode); + drop table t1,t2; -- cgit v1.2.1