summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-11-22 14:40:38 +0200
committermonty@hundin.mysql.fi <>2001-11-22 14:40:38 +0200
commit9265a4df45ea24b029ce024df7c9f34b7248a0d0 (patch)
treeed7b5ac619c61e789b26d5243f8391f68a3fa04a /mysql-test
parent9209210d30e5bd29f4df30f208f6e91cee3e089b (diff)
parenta2a838f88769dea90a0ba5a7196057eec6ca8c11 (diff)
downloadmariadb-git-9265a4df45ea24b029ce024df7c9f34b7248a0d0.tar.gz
merge
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/t/fulltext.test3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test
index 2608a9c02a6..81993b167c6 100644
--- a/mysql-test/t/fulltext.test
+++ b/mysql-test/t/fulltext.test
@@ -23,6 +23,9 @@ select * from t1 where MATCH(a,b) AGAINST("+search +(support vector)" IN BOOLEAN
select * from t1 where MATCH(a,b) AGAINST("+search -(support vector)" IN BOOLEAN MODE);
select *, MATCH(a,b) AGAINST("support collections" IN BOOLEAN MODE) as x from t1;
delete from t1 where a like "MySQL%";
+update t1 set a='some test foobar' where MATCH a,b AGAINST ('model');
+delete from t1 where MATCH(a,b) AGAINST ("indexes");
+select * from t1;
drop table t1;
#