summaryrefslogtreecommitdiff
path: root/mysql-test/t/fulltext_left_join.test
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-11-20 17:58:00 +0100
committerunknown <serg@serg.mysql.com>2001-11-20 17:58:00 +0100
commit62d2ecb170a83de0ec4d98bec37be5c3512cd83d (patch)
tree949106cf06877bc2f852688e09b757f6a7d0b050 /mysql-test/t/fulltext_left_join.test
parentc282bbf0ff6d16658a38c61190a2e442e8a32659 (diff)
downloadmariadb-git-62d2ecb170a83de0ec4d98bec37be5c3512cd83d.tar.gz
tests added
mysql-test/r/fulltext_distinct.result: boolean test added mysql-test/t/fulltext_distinct.test: boolean test added mysql-test/r/fulltext_left_join.result: boolean test added mysql-test/t/fulltext_left_join.test: boolean test added
Diffstat (limited to 'mysql-test/t/fulltext_left_join.test')
-rw-r--r--mysql-test/t/fulltext_left_join.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/fulltext_left_join.test b/mysql-test/t/fulltext_left_join.test
index d09d577d04b..abb1c8e8473 100644
--- a/mysql-test/t/fulltext_left_join.test
+++ b/mysql-test/t/fulltext_left_join.test
@@ -22,6 +22,8 @@ INSERT INTO t2 VALUES('456', 'lui');
select match(t1.texte,t1.sujet,t1.motsclefs) against('droit')
from t1 left join t2 on t2.id=t1.id;
+select match(t1.texte,t1.sujet,t1.motsclefs) against('droit' IN BOOLEAN MODE)
+ from t1 left join t2 on t2.id=t1.id;
drop table t1, t2;