summaryrefslogtreecommitdiff
path: root/mysql-test/r/fulltext.result
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2002-10-14 11:36:48 +0000
committerserg@serg.mysql.com <>2002-10-14 11:36:48 +0000
commitfcb8bc061d4f6d139512670caf92c4648216b686 (patch)
tree50e53348aa9b2bb4539eb9061d6dbaf5b3bb646f /mysql-test/r/fulltext.result
parent7ba2242803837b411394b154e476dc577f957718 (diff)
parentfd8e2337f51e41aed080e50972f407b82a517049 (diff)
downloadmariadb-git-fcb8bc061d4f6d139512670caf92c4648216b686.tar.gz
merged
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r--mysql-test/r/fulltext.result4
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');