summaryrefslogtreecommitdiff
path: root/mysql-test/t/fulltext_cache.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/fulltext_cache.test')
-rw-r--r--mysql-test/t/fulltext_cache.test7
1 files changed, 5 insertions, 2 deletions
diff --git a/mysql-test/t/fulltext_cache.test b/mysql-test/t/fulltext_cache.test
index 314ecf8642f..c6c76ee9182 100644
--- a/mysql-test/t/fulltext_cache.test
+++ b/mysql-test/t/fulltext_cache.test
@@ -25,8 +25,11 @@ INSERT INTO t2 VALUES (6,2,'um chocolate Snickers');
INSERT INTO t2 VALUES (7,1,'Bife');
INSERT INTO t2 VALUES (8,1,'Pizza de Salmao');
-SELECT item, id, MATCH item AGAINST ('sushi') as x FROM t2 ORDER BY x DESC;
-
SELECT t1.q, t2.item, t2.id, MATCH t2.item AGAINST ('sushi') as x FROM t1, t2
WHERE (t2.id2 = t1.id) ORDER BY x DESC;
+SELECT t1.q, t2.item, t2.id, MATCH t2.item AGAINST ('sushi') as x FROM t2, t1
+WHERE (t2.id2 = t1.id) ORDER BY x DESC;
+
+drop table t1, t2;
+