summaryrefslogtreecommitdiff
path: root/mysql-test/r/fulltext.result
diff options
context:
space:
mode:
authorserg@serg.mylan <>2004-10-29 14:31:20 +0200
committerserg@serg.mylan <>2004-10-29 14:31:20 +0200
commitc365960582b5e10b9ff934c53cbf892065cc8629 (patch)
treef85ad526c98171ea6e218a8d85bbbd439f4666c2 /mysql-test/r/fulltext.result
parent7577c8bfc9efb21b8a8a3c08e342054e754370ab (diff)
parentd2bfefc3c1e71c32fb4cad8f4c83efcd91c04e38 (diff)
downloadmariadb-git-c365960582b5e10b9ff934c53cbf892065cc8629.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r--mysql-test/r/fulltext.result3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result
index d07e4df6e73..0a26f545ab0 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');