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/r/fulltext.result | |
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/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 30c4c75f3d1..65f88932d54 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -330,6 +330,9 @@ t1_id name t2_id t1_id name select * from t2 where match name against ('a* b* c* d* e* f*' in boolean mode); t2_id t1_id name drop table t1,t2; +create table t1 (a text, fulltext key (a)); +insert into t1 select "xxxx yyyy zzzz"; +drop table t1; SET NAMES latin1; CREATE TABLE t1 (t text character set utf8 not null, fulltext(t)); INSERT t1 VALUES ('Mit freundlichem Grüß'), ('aus Osnabrück'); |