diff options
author | monty@mysql.com <> | 2004-11-04 15:06:24 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-11-04 15:06:24 +0200 |
commit | 071001950efe9886a56ec8a365217f0d1cd92c1f (patch) | |
tree | 9d4d27a72c18ead47fb83bd5ec0e2383cdd34ff6 /mysql-test/r/fulltext.result | |
parent | a1a27eb35a8ad7616cb08937dc4e959e2410c35b (diff) | |
parent | f5e5dfb2f779cbb5468d63d94d659fa3d6a17e8a (diff) | |
download | mariadb-git-071001950efe9886a56ec8a365217f0d1cd92c1f.tar.gz |
Merge with 4.1 to get in latest bug fixes
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 3f4766830b0..ba2403bac21 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'); |