diff options
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 7d9ba18d933..a08b5da99a4 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -6,3 +6,17 @@ Full-text indexes are called collections a b Full-text indexes are called collections Only MyISAM tables support collections +id +id +id +3 +Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Comment +t2 1 tig 1 ticket A NULL NULL NULL +t2 1 tix 1 inhalt A NULL 1 NULL FULLTEXT +Table Create Table +t2 CREATE TABLE `t2` ( + `ticket` int(11) default NULL, + `inhalt` text, + KEY `tig`(`ticket`), + FULLTEXT KEY `tix`(`inhalt`) +) TYPE=MyISAM |