diff options
author | serg@serg.mysql.com <> | 2002-10-14 11:36:48 +0000 |
---|---|---|
committer | serg@serg.mysql.com <> | 2002-10-14 11:36:48 +0000 |
commit | fcb8bc061d4f6d139512670caf92c4648216b686 (patch) | |
tree | 50e53348aa9b2bb4539eb9061d6dbaf5b3bb646f /mysql-test/r/fulltext.result | |
parent | 7ba2242803837b411394b154e476dc577f957718 (diff) | |
parent | fd8e2337f51e41aed080e50972f407b82a517049 (diff) | |
download | mariadb-git-fcb8bc061d4f6d139512670caf92c4648216b686.tar.gz |
merged
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index ab227687265..ea632732017 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -138,10 +138,10 @@ show create table t2; Table Create Table t2 CREATE TABLE `t2` ( `ticket` int(11) default NULL, - `inhalt` text, + `inhalt` text character set latin1, KEY `tig` (`ticket`), FULLTEXT KEY `tix` (`inhalt`) -) TYPE=MyISAM +) TYPE=MyISAM CHARSET=latin1 select * from t2 where MATCH inhalt AGAINST (NULL); ticket inhalt select * from t2 where MATCH inhalt AGAINST ('foobar'); |