diff options
author | unknown <serg@serg.mylan> | 2004-10-29 14:24:06 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-10-29 14:24:06 +0200 |
commit | 13ff3fa4b92642779c260c9fcd56ea2e5c96391c (patch) | |
tree | 470f639c064715a7b27df2392021dbaa6ad329cb /mysql-test/t/fulltext.test | |
parent | 55833fb49bf8570ee11d4b85b143a9a3975733fa (diff) | |
download | mariadb-git-13ff3fa4b92642779c260c9fcd56ea2e5c96391c.tar.gz |
proper max_records estimation for sort-repair of fulltext indexes
mysql-test/t/ctype_utf8.test:
bad merge fixed
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; |