diff options
author | unknown <serg@serg.mylan> | 2004-10-29 14:31:20 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-10-29 14:31:20 +0200 |
commit | 16ed686a939601509fa4bffc56e99046a0348956 (patch) | |
tree | f85ad526c98171ea6e218a8d85bbbd439f4666c2 /mysql-test/r/fulltext.result | |
parent | 6e781e11a9f7606b8b41532c382df9cf00617d17 (diff) | |
parent | 13ff3fa4b92642779c260c9fcd56ea2e5c96391c (diff) | |
download | mariadb-git-16ed686a939601509fa4bffc56e99046a0348956.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1
mysql-test/r/fulltext.result:
Auto merged
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 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'); |