summaryrefslogtreecommitdiff
path: root/mysql-test/t/fulltext.test
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2003-06-16 23:05:45 +0200
committerunknown <serg@serg.mylan>2003-06-16 23:05:45 +0200
commitad5c763e74821465cc8237aa39e2391239a17206 (patch)
tree225a6aa19779a08d242bb2e5a07f1c8a263f6660 /mysql-test/t/fulltext.test
parente85ecbc101879476c8f76f4be62019c0f70437b1 (diff)
downloadmariadb-git-ad5c763e74821465cc8237aa39e2391239a17206.tar.gz
fulltext and left join bug fixed
mysql-test/t/fulltext.test: explain select fulltext test mysql-test/t/fulltext_left_join.test: explain select fulltext test
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r--mysql-test/t/fulltext.test1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test
index 128af680854..1b85f5903df 100644
--- a/mysql-test/t/fulltext.test
+++ b/mysql-test/t/fulltext.test
@@ -13,6 +13,7 @@ INSERT INTO t1 VALUES('MySQL has now support', 'for full-text search'),
# nl search
+explain select * from t1 where MATCH(a,b) AGAINST ("collections");
select * from t1 where MATCH(a,b) AGAINST ("collections");
select * from t1 where MATCH(a,b) AGAINST ("indexes");
select * from t1 where MATCH(a,b) AGAINST ("indexes collections");