summaryrefslogtreecommitdiff
path: root/mysql-test/t/fulltext.test
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2013-04-19 20:35:04 +0200
committerSergei Golubchik <sergii@pisem.net>2013-04-19 20:35:04 +0200
commit45912599cacbfe6800f9fc6643b7963f06cc4184 (patch)
tree0c2d574cdc0e960bee5101995392edd924d148bc /mysql-test/t/fulltext.test
parent53375573e32e77676f4a4338099e44698b1bfb45 (diff)
parent016bef6ea0558a0b9758e22f448f89bf3ba25197 (diff)
downloadmariadb-git-45912599cacbfe6800f9fc6643b7963f06cc4184.tar.gz
10.0 merge
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r--mysql-test/t/fulltext.test11
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test
index b4b09413896..6e44b4c1578 100644
--- a/mysql-test/t/fulltext.test
+++ b/mysql-test/t/fulltext.test
@@ -646,3 +646,14 @@ DEALLOCATE PREPARE stmt;
DROP TABLE t1;
--echo End of 5.1 tests
+
+CREATE TABLE t1 (
+ id int(11) auto_increment,
+ title varchar(100) default '',
+ PRIMARY KEY (id),
+ KEY ind5 (title)
+) ENGINE=MyISAM;
+
+CREATE FULLTEXT INDEX IF NOT EXISTS ft1 ON t1(title);
+CREATE FULLTEXT INDEX IF NOT EXISTS ft1 ON t1(title);
+DROP TABLE t1;