diff options
author | unknown <serg@serg.mylan> | 2003-06-16 00:13:23 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-06-16 00:13:23 +0200 |
commit | 47d976858e2b989ab85d1b09711a8ce11e7de60f (patch) | |
tree | 01871a719e85fd0a72ccf1163e67a989304af395 /mysql-test/r/fulltext.result | |
parent | fff9d1cd34d10c1ec3f3bf25ca5b7138f1116ed2 (diff) | |
download | mariadb-git-47d976858e2b989ab85d1b09711a8ce11e7de60f.tar.gz |
bad merge fixed
mysql-test/r/fulltext.result:
test for CREATE FULLTEXT INDEX
mysql-test/t/fulltext.test:
test for CREATE FULLTEXT INDEX
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 caf93e7e973..157beec2c01 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -172,9 +172,9 @@ CREATE TABLE t1 ( id int(11) auto_increment, title varchar(100) default '', PRIMARY KEY (id), -KEY ind5 (title), -FULLTEXT KEY FT1 (title) +KEY ind5 (title) ) TYPE=MyISAM; +CREATE FULLTEXT INDEX ft1 ON t1(title); insert into t1 (title) values ('this is a test'); select * from t1 where match title against ('test' in boolean mode); id title |