diff options
author | serg@serg.mylan <> | 2004-10-29 14:24:06 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2004-10-29 14:24:06 +0200 |
commit | d2bfefc3c1e71c32fb4cad8f4c83efcd91c04e38 (patch) | |
tree | 470f639c064715a7b27df2392021dbaa6ad329cb /mysql-test/t/fulltext.test | |
parent | cce8f5449d19b3feb15da247a4692e8d61763efa (diff) | |
download | mariadb-git-d2bfefc3c1e71c32fb4cad8f4c83efcd91c04e38.tar.gz |
proper max_records estimation for sort-repair of fulltext indexes
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r-- | mysql-test/t/fulltext.test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index 66df5b1cb92..5af2575ddc4 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -253,10 +253,17 @@ select * from t1 join t2 using(`t1_id`) where match (t1.name, t2.name) against(' # 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; # +# bug with repair-by-sort and incorrect records estimation +# + +create table t1 (a text, fulltext key (a)); +insert into t1 select "xxxx yyyy zzzz"; +drop table t1; + +# # UTF8 # SET NAMES latin1; |